OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2010 The VP8 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 "common.h" | 12 #include "common.h" |
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 w, &mvc[1], &vp8_default_mv_context[1], &vp8_mv_update_probs[1], cpi->MV
count[1], 1, &flags[1] | 435 w, &mvc[1], &vp8_default_mv_context[1], &vp8_mv_update_probs[1], cpi->MV
count[1], 1, &flags[1] |
436 ); | 436 ); |
437 | 437 |
438 if (flags[0] || flags[1]) | 438 if (flags[0] || flags[1]) |
439 vp8_build_component_cost_table(cpi->mb.mvcost, cpi->mb.mvsadcost, (const
MV_CONTEXT *) cpi->common.fc.mvc, flags); | 439 vp8_build_component_cost_table(cpi->mb.mvcost, cpi->mb.mvsadcost, (const
MV_CONTEXT *) cpi->common.fc.mvc, flags); |
440 | 440 |
441 #ifdef ENTROPY_STATS | 441 #ifdef ENTROPY_STATS |
442 active_section = 5; | 442 active_section = 5; |
443 #endif | 443 #endif |
444 } | 444 } |
OLD | NEW |