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 <limits.h> | 12 #include <limits.h> |
13 #include "vpx_config.h" | 13 #include "vpx_config.h" |
14 #include "vpx_rtcd.h" | 14 #include "vp8_rtcd.h" |
15 #include "vpx/vpx_integer.h" | 15 #include "vpx/vpx_integer.h" |
16 #include "blockd.h" | 16 #include "blockd.h" |
17 #include "reconinter.h" | 17 #include "reconinter.h" |
18 #if CONFIG_RUNTIME_CPU_DETECT | 18 #if CONFIG_RUNTIME_CPU_DETECT |
19 #include "onyxc_int.h" | 19 #include "onyxc_int.h" |
20 #endif | 20 #endif |
21 | 21 |
22 void vp8_copy_mem16x16_c( | 22 void vp8_copy_mem16x16_c( |
23 unsigned char *src, | 23 unsigned char *src, |
24 int src_stride, | 24 int src_stride, |
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
586 vp8_build_inter16x16_predictors_mb(xd, xd->dst.y_buffer, | 586 vp8_build_inter16x16_predictors_mb(xd, xd->dst.y_buffer, |
587 xd->dst.u_buffer, xd->dst.v_buffer, | 587 xd->dst.u_buffer, xd->dst.v_buffer, |
588 xd->dst.y_stride, xd->dst.uv_stride); | 588 xd->dst.y_stride, xd->dst.uv_stride); |
589 } | 589 } |
590 else | 590 else |
591 { | 591 { |
592 build_4x4uvmvs(xd); | 592 build_4x4uvmvs(xd); |
593 build_inter4x4_predictors_mb(xd); | 593 build_inter4x4_predictors_mb(xd); |
594 } | 594 } |
595 } | 595 } |
OLD | NEW |