| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 <stdio.h> | 12 #include <stdio.h> |
| 13 | 13 |
| 14 #include "./vpx_dsp_rtcd.h" | 14 #include "./vpx_dsp_rtcd.h" |
| 15 #include "vpx_dsp/mips/vpx_common_dspr2.h" | 15 #include "vpx_dsp/mips/convolve_common_dspr2.h" |
| 16 #include "vpx_dsp/vpx_dsp_common.h" | 16 #include "vpx_dsp/vpx_dsp_common.h" |
| 17 #include "vpx_dsp/vpx_filter.h" | 17 #include "vpx_dsp/vpx_filter.h" |
| 18 #include "vpx_ports/mem.h" | 18 #include "vpx_ports/mem.h" |
| 19 | 19 |
| 20 #if HAVE_DSPR2 | 20 #if HAVE_DSPR2 |
| 21 static void convolve_bi_horiz_4_transposed_dspr2(const uint8_t *src, | 21 static void convolve_bi_horiz_4_transposed_dspr2(const uint8_t *src, |
| 22 int32_t src_stride, | 22 int32_t src_stride, |
| 23 uint8_t *dst, | 23 uint8_t *dst, |
| 24 int32_t dst_stride, | 24 int32_t dst_stride, |
| 25 const int16_t *filter_x0, | 25 const int16_t *filter_x0, |
| (...skipping 747 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 773 filter, h); | 773 filter, h); |
| 774 break; | 774 break; |
| 775 default: | 775 default: |
| 776 convolve_bi_horiz_transposed(src, src_stride, | 776 convolve_bi_horiz_transposed(src, src_stride, |
| 777 dst, dst_stride, | 777 dst, dst_stride, |
| 778 filter, w, h); | 778 filter, w, h); |
| 779 break; | 779 break; |
| 780 } | 780 } |
| 781 } | 781 } |
| 782 #endif | 782 #endif |
| OLD | NEW |