| 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 <limits.h> | 11 #include <limits.h> |
| 12 #include <math.h> | 12 #include <math.h> |
| 13 #include <stdio.h> | 13 #include <stdio.h> |
| 14 | 14 |
| 15 #include "./vp9_rtcd.h" | 15 #include "./vp9_rtcd.h" |
| 16 #include "./vpx_dsp_rtcd.h" | 16 #include "./vpx_dsp_rtcd.h" |
| 17 #include "./vpx_config.h" | 17 #include "./vpx_config.h" |
| 18 | 18 |
| 19 #include "vpx_dsp/vpx_dsp_common.h" |
| 19 #include "vpx_ports/mem.h" | 20 #include "vpx_ports/mem.h" |
| 20 #include "vpx_ports/vpx_timer.h" | 21 #include "vpx_ports/vpx_timer.h" |
| 21 #include "vpx_ports/system_state.h" | 22 #include "vpx_ports/system_state.h" |
| 22 | 23 |
| 23 #include "vp9/common/vp9_common.h" | 24 #include "vp9/common/vp9_common.h" |
| 24 #include "vp9/common/vp9_entropy.h" | 25 #include "vp9/common/vp9_entropy.h" |
| 25 #include "vp9/common/vp9_entropymode.h" | 26 #include "vp9/common/vp9_entropymode.h" |
| 26 #include "vp9/common/vp9_idct.h" | 27 #include "vp9/common/vp9_idct.h" |
| 27 #include "vp9/common/vp9_mvref_common.h" | 28 #include "vp9/common/vp9_mvref_common.h" |
| 28 #include "vp9/common/vp9_pred_common.h" | 29 #include "vp9/common/vp9_pred_common.h" |
| (...skipping 4178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4207 | 4208 |
| 4208 for (y = 0; y < mi_height; y++) | 4209 for (y = 0; y < mi_height; y++) |
| 4209 for (x = 0; x < mi_width; x++) | 4210 for (x = 0; x < mi_width; x++) |
| 4210 if (mi_col + x < cm->mi_cols && mi_row + y < cm->mi_rows) | 4211 if (mi_col + x < cm->mi_cols && mi_row + y < cm->mi_rows) |
| 4211 mi_8x8[mis * y + x]->mbmi.tx_size = tx_size; | 4212 mi_8x8[mis * y + x]->mbmi.tx_size = tx_size; |
| 4212 } | 4213 } |
| 4213 ++td->counts->tx.tx_totals[mbmi->tx_size]; | 4214 ++td->counts->tx.tx_totals[mbmi->tx_size]; |
| 4214 ++td->counts->tx.tx_totals[get_uv_tx_size(mbmi, &xd->plane[1])]; | 4215 ++td->counts->tx.tx_totals[get_uv_tx_size(mbmi, &xd->plane[1])]; |
| 4215 } | 4216 } |
| 4216 } | 4217 } |
| OLD | NEW |