| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 | 11 |
| 12 #include "./vp9_rtcd.h" | 12 #include "./vp9_rtcd.h" |
| 13 #include "./vpx_config.h" | 13 #include "./vpx_config.h" |
| 14 | 14 |
| 15 #include "vpx_mem/vpx_mem.h" | 15 #include "vpx_mem/vpx_mem.h" |
| 16 #include "vpx_ports/mem.h" |
| 16 | 17 |
| 17 #include "vp9/common/vp9_idct.h" | 18 #include "vp9/common/vp9_idct.h" |
| 18 #include "vp9/common/vp9_reconinter.h" | 19 #include "vp9/common/vp9_reconinter.h" |
| 19 #include "vp9/common/vp9_reconintra.h" | 20 #include "vp9/common/vp9_reconintra.h" |
| 21 #include "vp9/common/vp9_scan.h" |
| 20 #include "vp9/common/vp9_systemdependent.h" | 22 #include "vp9/common/vp9_systemdependent.h" |
| 21 | 23 |
| 22 #include "vp9/encoder/vp9_encodemb.h" | 24 #include "vp9/encoder/vp9_encodemb.h" |
| 23 #include "vp9/encoder/vp9_quantize.h" | 25 #include "vp9/encoder/vp9_quantize.h" |
| 24 #include "vp9/encoder/vp9_rd.h" | 26 #include "vp9/encoder/vp9_rd.h" |
| 25 #include "vp9/encoder/vp9_tokenize.h" | 27 #include "vp9/encoder/vp9_tokenize.h" |
| 26 | 28 |
| 27 struct optimize_ctx { | 29 struct optimize_ctx { |
| 28 ENTROPY_CONTEXT ta[MAX_MB_PLANE][16]; | 30 ENTROPY_CONTEXT ta[MAX_MB_PLANE][16]; |
| 29 ENTROPY_CONTEXT tl[MAX_MB_PLANE][16]; | 31 ENTROPY_CONTEXT tl[MAX_MB_PLANE][16]; |
| (...skipping 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1035 *(args->skip) = 0; | 1037 *(args->skip) = 0; |
| 1036 } | 1038 } |
| 1037 | 1039 |
| 1038 void vp9_encode_intra_block_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) { | 1040 void vp9_encode_intra_block_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) { |
| 1039 const MACROBLOCKD *const xd = &x->e_mbd; | 1041 const MACROBLOCKD *const xd = &x->e_mbd; |
| 1040 struct encode_b_args arg = {x, NULL, &xd->mi[0]->mbmi.skip}; | 1042 struct encode_b_args arg = {x, NULL, &xd->mi[0]->mbmi.skip}; |
| 1041 | 1043 |
| 1042 vp9_foreach_transformed_block_in_plane(xd, bsize, plane, | 1044 vp9_foreach_transformed_block_in_plane(xd, bsize, plane, |
| 1043 vp9_encode_block_intra, &arg); | 1045 vp9_encode_block_intra, &arg); |
| 1044 } | 1046 } |
| OLD | NEW |