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 #include <assert.h> | 11 #include <assert.h> |
12 #include <math.h> | 12 #include <math.h> |
13 | 13 |
14 #include "./vp9_rtcd.h" | 14 #include "./vp9_rtcd.h" |
15 | 15 |
16 #include "vpx_mem/vpx_mem.h" | 16 #include "vpx_mem/vpx_mem.h" |
| 17 #include "vpx_ports/mem.h" |
17 | 18 |
18 #include "vp9/common/vp9_common.h" | 19 #include "vp9/common/vp9_common.h" |
19 #include "vp9/common/vp9_entropy.h" | 20 #include "vp9/common/vp9_entropy.h" |
20 #include "vp9/common/vp9_entropymode.h" | 21 #include "vp9/common/vp9_entropymode.h" |
21 #include "vp9/common/vp9_idct.h" | 22 #include "vp9/common/vp9_idct.h" |
22 #include "vp9/common/vp9_mvref_common.h" | 23 #include "vp9/common/vp9_mvref_common.h" |
23 #include "vp9/common/vp9_pred_common.h" | 24 #include "vp9/common/vp9_pred_common.h" |
24 #include "vp9/common/vp9_quant_common.h" | 25 #include "vp9/common/vp9_quant_common.h" |
25 #include "vp9/common/vp9_reconinter.h" | 26 #include "vp9/common/vp9_reconinter.h" |
26 #include "vp9/common/vp9_reconintra.h" | 27 #include "vp9/common/vp9_reconintra.h" |
| 28 #include "vp9/common/vp9_scan.h" |
27 #include "vp9/common/vp9_seg_common.h" | 29 #include "vp9/common/vp9_seg_common.h" |
28 #include "vp9/common/vp9_systemdependent.h" | 30 #include "vp9/common/vp9_systemdependent.h" |
29 | 31 |
30 #include "vp9/encoder/vp9_cost.h" | 32 #include "vp9/encoder/vp9_cost.h" |
31 #include "vp9/encoder/vp9_encodemb.h" | 33 #include "vp9/encoder/vp9_encodemb.h" |
32 #include "vp9/encoder/vp9_encodemv.h" | 34 #include "vp9/encoder/vp9_encodemv.h" |
33 #include "vp9/encoder/vp9_encoder.h" | 35 #include "vp9/encoder/vp9_encoder.h" |
34 #include "vp9/encoder/vp9_mcomp.h" | 36 #include "vp9/encoder/vp9_mcomp.h" |
35 #include "vp9/encoder/vp9_quantize.h" | 37 #include "vp9/encoder/vp9_quantize.h" |
36 #include "vp9/encoder/vp9_ratectrl.h" | 38 #include "vp9/encoder/vp9_ratectrl.h" |
(...skipping 4265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4302 } | 4304 } |
4303 if (cm->interp_filter == SWITCHABLE) | 4305 if (cm->interp_filter == SWITCHABLE) |
4304 assert(best_filter_diff[SWITCHABLE_FILTERS] == 0); | 4306 assert(best_filter_diff[SWITCHABLE_FILTERS] == 0); |
4305 } else { | 4307 } else { |
4306 vp9_zero(best_filter_diff); | 4308 vp9_zero(best_filter_diff); |
4307 } | 4309 } |
4308 | 4310 |
4309 store_coding_context(x, ctx, best_ref_index, | 4311 store_coding_context(x, ctx, best_ref_index, |
4310 best_pred_diff, best_tx_diff, best_filter_diff, 0); | 4312 best_pred_diff, best_tx_diff, best_filter_diff, 0); |
4311 } | 4313 } |
OLD | NEW |