blob: 7445941d73200c6aed15b8e1cab36790bee65cb3 [file] [log] [blame]
Yaowu Xuc27fc142016-08-22 16:08:15 -07001/*
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Yaowu Xuc27fc142016-08-22 16:08:15 -07003 *
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07004 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
Yaowu Xuc27fc142016-08-22 16:08:15 -070010 */
11
12#include <assert.h>
13
14#include "av1/common/filter.h"
15
16DECLARE_ALIGNED(256, static const InterpKernel,
17 bilinear_filters[SUBPEL_SHIFTS]) = {
18 { 0, 0, 0, 128, 0, 0, 0, 0 }, { 0, 0, 0, 120, 8, 0, 0, 0 },
19 { 0, 0, 0, 112, 16, 0, 0, 0 }, { 0, 0, 0, 104, 24, 0, 0, 0 },
20 { 0, 0, 0, 96, 32, 0, 0, 0 }, { 0, 0, 0, 88, 40, 0, 0, 0 },
21 { 0, 0, 0, 80, 48, 0, 0, 0 }, { 0, 0, 0, 72, 56, 0, 0, 0 },
22 { 0, 0, 0, 64, 64, 0, 0, 0 }, { 0, 0, 0, 56, 72, 0, 0, 0 },
23 { 0, 0, 0, 48, 80, 0, 0, 0 }, { 0, 0, 0, 40, 88, 0, 0, 0 },
24 { 0, 0, 0, 32, 96, 0, 0, 0 }, { 0, 0, 0, 24, 104, 0, 0, 0 },
25 { 0, 0, 0, 16, 112, 0, 0, 0 }, { 0, 0, 0, 8, 120, 0, 0, 0 }
26};
27
28#if USE_TEMPORALFILTER_12TAP
Angie Chiangb9ba5c22016-10-03 16:39:27 -070029DECLARE_ALIGNED(16, static const int16_t,
30 sub_pel_filters_temporalfilter_12[SUBPEL_SHIFTS][12]) = {
Yaowu Xuc27fc142016-08-22 16:08:15 -070031 // intfilt 0.8
32 { 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0 },
33 { 0, 1, -1, 3, -7, 127, 8, -4, 2, -1, 0, 0 },
34 { 0, 1, -3, 5, -12, 124, 18, -8, 4, -2, 1, 0 },
35 { -1, 2, -4, 8, -17, 120, 28, -11, 6, -3, 1, -1 },
36 { -1, 2, -4, 10, -21, 114, 38, -15, 8, -4, 2, -1 },
37 { -1, 3, -5, 11, -23, 107, 49, -18, 9, -5, 2, -1 },
38 { -1, 3, -6, 12, -25, 99, 60, -21, 11, -6, 3, -1 },
39 { -1, 3, -6, 12, -25, 90, 70, -23, 12, -6, 3, -1 },
40 { -1, 3, -6, 12, -24, 80, 80, -24, 12, -6, 3, -1 },
41 { -1, 3, -6, 12, -23, 70, 90, -25, 12, -6, 3, -1 },
42 { -1, 3, -6, 11, -21, 60, 99, -25, 12, -6, 3, -1 },
43 { -1, 2, -5, 9, -18, 49, 107, -23, 11, -5, 3, -1 },
44 { -1, 2, -4, 8, -15, 38, 114, -21, 10, -4, 2, -1 },
45 { -1, 1, -3, 6, -11, 28, 120, -17, 8, -4, 2, -1 },
46 { 0, 1, -2, 4, -8, 18, 124, -12, 5, -3, 1, 0 },
47 { 0, 0, -1, 2, -4, 8, 127, -7, 3, -1, 1, 0 },
48};
49#endif // USE_TEMPORALFILTER_12TAP
50
51#if CONFIG_EXT_INTERP
52DECLARE_ALIGNED(256, static const InterpKernel,
53 sub_pel_filters_8[SUBPEL_SHIFTS]) = {
54 // intfilt 0.575
55 { 0, 0, 0, 128, 0, 0, 0, 0 }, { 0, 1, -5, 126, 8, -3, 1, 0 },
56 { -1, 3, -10, 123, 18, -6, 2, -1 }, { -1, 4, -14, 118, 27, -9, 3, 0 },
57 { -1, 5, -16, 112, 37, -12, 4, -1 }, { -1, 5, -18, 105, 48, -14, 4, -1 },
58 { -1, 6, -19, 97, 58, -17, 5, -1 }, { -1, 6, -20, 88, 68, -18, 6, -1 },
59 { -1, 6, -19, 78, 78, -19, 6, -1 }, { -1, 6, -18, 68, 88, -20, 6, -1 },
60 { -1, 5, -17, 58, 97, -19, 6, -1 }, { -1, 4, -14, 48, 105, -18, 5, -1 },
61 { -1, 4, -12, 37, 112, -16, 5, -1 }, { 0, 3, -9, 27, 118, -14, 4, -1 },
62 { -1, 2, -6, 18, 123, -10, 3, -1 }, { 0, 1, -3, 8, 126, -5, 1, 0 },
63};
64
65#if CONFIG_EXT_INTRA
66DECLARE_ALIGNED(256, static const InterpKernel,
67 sub_pel_filters_8sharp[SUBPEL_SHIFTS]) = {
68 // intfilt 0.8
69 { 0, 0, 0, 128, 0, 0, 0, 0 }, { -1, 2, -6, 127, 9, -4, 2, -1 },
70 { -2, 5, -12, 124, 18, -7, 4, -2 }, { -2, 7, -16, 119, 28, -11, 5, -2 },
71 { -3, 8, -19, 114, 38, -14, 7, -3 }, { -3, 9, -22, 107, 49, -17, 8, -3 },
72 { -4, 10, -23, 99, 60, -20, 10, -4 }, { -4, 11, -23, 90, 70, -22, 10, -4 },
73 { -4, 11, -23, 80, 80, -23, 11, -4 }, { -4, 10, -22, 70, 90, -23, 11, -4 },
74 { -4, 10, -20, 60, 99, -23, 10, -4 }, { -3, 8, -17, 49, 107, -22, 9, -3 },
75 { -3, 7, -14, 38, 114, -19, 8, -3 }, { -2, 5, -11, 28, 119, -16, 7, -2 },
76 { -2, 4, -7, 18, 124, -12, 5, -2 }, { -1, 2, -4, 9, 127, -6, 2, -1 },
77};
78#endif // CONFIG_EXT_INTRA
79
Angie Chiangb9ba5c22016-10-03 16:39:27 -070080DECLARE_ALIGNED(256, static const int16_t,
Angie Chiangd91ab372016-11-21 18:16:49 -080081 sub_pel_filters_12sharp[SUBPEL_SHIFTS][12]) = {
82 // intfilt 0.8
83 { 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0 },
84 { 0, 1, -1, 3, -7, 127, 8, -4, 2, -1, 0, 0 },
85 { 0, 1, -3, 5, -12, 124, 18, -8, 4, -2, 1, 0 },
86 { -1, 2, -4, 8, -17, 120, 28, -11, 6, -3, 1, -1 },
87 { -1, 2, -4, 10, -21, 114, 38, -15, 8, -4, 2, -1 },
88 { -1, 3, -5, 11, -23, 107, 49, -18, 9, -5, 2, -1 },
89 { -1, 3, -6, 12, -25, 99, 60, -21, 11, -6, 3, -1 },
90 { -1, 3, -6, 12, -25, 90, 70, -23, 12, -6, 3, -1 },
91 { -1, 3, -6, 12, -24, 80, 80, -24, 12, -6, 3, -1 },
92 { -1, 3, -6, 12, -23, 70, 90, -25, 12, -6, 3, -1 },
93 { -1, 3, -6, 11, -21, 60, 99, -25, 12, -6, 3, -1 },
94 { -1, 2, -5, 9, -18, 49, 107, -23, 11, -5, 3, -1 },
95 { -1, 2, -4, 8, -15, 38, 114, -21, 10, -4, 2, -1 },
96 { -1, 1, -3, 6, -11, 28, 120, -17, 8, -4, 2, -1 },
97 { 0, 1, -2, 4, -8, 18, 124, -12, 5, -3, 1, 0 },
98 { 0, 0, -1, 2, -4, 8, 127, -7, 3, -1, 1, 0 },
Yaowu Xuc27fc142016-08-22 16:08:15 -070099};
100
101DECLARE_ALIGNED(256, static const InterpKernel,
102 sub_pel_filters_8smooth2[SUBPEL_SHIFTS]) = {
103 // freqmultiplier = 0.35
104 { 0, 0, 0, 128, 0, 0, 0, 0 }, { -1, 8, 31, 47, 34, 10, 0, -1 },
105 { -1, 7, 29, 46, 36, 12, 0, -1 }, { -1, 6, 28, 46, 37, 13, 0, -1 },
106 { -1, 5, 26, 46, 38, 14, 1, -1 }, { -1, 4, 25, 45, 39, 16, 1, -1 },
107 { -1, 4, 23, 44, 41, 17, 1, -1 }, { -1, 3, 21, 44, 42, 18, 2, -1 },
108 { -1, 2, 20, 43, 43, 20, 2, -1 }, { -1, 2, 18, 42, 44, 21, 3, -1 },
109 { -1, 1, 17, 41, 44, 23, 4, -1 }, { -1, 1, 16, 39, 45, 25, 4, -1 },
110 { -1, 1, 14, 38, 46, 26, 5, -1 }, { -1, 0, 13, 37, 46, 28, 6, -1 },
111 { -1, 0, 12, 36, 46, 29, 7, -1 }, { -1, 0, 10, 34, 47, 31, 8, -1 },
112};
113
114DECLARE_ALIGNED(256, static const InterpKernel,
115 sub_pel_filters_8smooth[SUBPEL_SHIFTS]) = {
116 // freqmultiplier = 0.75
117 { 0, 0, 0, 128, 0, 0, 0, 0 }, { 2, -10, 19, 95, 31, -11, 2, 0 },
118 { 2, -9, 14, 94, 37, -12, 2, 0 }, { 2, -8, 9, 92, 43, -12, 1, 1 },
119 { 2, -7, 5, 90, 49, -12, 1, 0 }, { 2, -5, 1, 86, 55, -12, 0, 1 },
120 { 1, -4, -2, 82, 61, -11, 0, 1 }, { 1, -3, -5, 77, 67, -9, -1, 1 },
121 { 1, -2, -7, 72, 72, -7, -2, 1 }, { 1, -1, -9, 67, 77, -5, -3, 1 },
122 { 1, 0, -11, 61, 82, -2, -4, 1 }, { 1, 0, -12, 55, 86, 1, -5, 2 },
123 { 0, 1, -12, 49, 90, 5, -7, 2 }, { 1, 1, -12, 43, 92, 9, -8, 2 },
124 { 0, 2, -12, 37, 94, 14, -9, 2 }, { 0, 2, -11, 31, 95, 19, -10, 2 },
125};
Arild Fuldseth7acfabb2016-08-26 14:08:58 +0200126#else // CONFIG_EXT_INTERP
Yaowu Xuc27fc142016-08-22 16:08:15 -0700127
128DECLARE_ALIGNED(256, static const InterpKernel,
129 sub_pel_filters_8[SUBPEL_SHIFTS]) = {
Arild Fuldseth7acfabb2016-08-26 14:08:58 +0200130#if CONFIG_FILTER_7BIT
131 { 0, 0, 0, 128, 0, 0, 0, 0 }, { 0, 2, -6, 126, 8, -2, 0, 0 },
132 { 0, 2, -10, 122, 18, -4, 0, 0 }, { 0, 2, -12, 116, 28, -8, 2, 0 },
133 { 0, 2, -14, 110, 38, -10, 2, 0 }, { 0, 2, -14, 102, 48, -12, 2, 0 },
134 { 0, 2, -16, 94, 58, -12, 2, 0 }, { 0, 2, -14, 84, 66, -12, 2, 0 },
135 { 0, 2, -14, 76, 76, -14, 2, 0 }, { 0, 2, -12, 66, 84, -14, 2, 0 },
136 { 0, 2, -12, 58, 94, -16, 2, 0 }, { 0, 2, -12, 48, 102, -14, 2, 0 },
137 { 0, 2, -10, 38, 110, -14, 2, 0 }, { 0, 2, -8, 28, 116, -12, 2, 0 },
138 { 0, 0, -4, 18, 122, -10, 2, 0 }, { 0, 0, -2, 8, 126, -6, 2, 0 }
139#else
Yaowu Xuc27fc142016-08-22 16:08:15 -0700140 { 0, 0, 0, 128, 0, 0, 0, 0 }, { 0, 1, -5, 126, 8, -3, 1, 0 },
141 { -1, 3, -10, 122, 18, -6, 2, 0 }, { -1, 4, -13, 118, 27, -9, 3, -1 },
142 { -1, 4, -16, 112, 37, -11, 4, -1 }, { -1, 5, -18, 105, 48, -14, 4, -1 },
143 { -1, 5, -19, 97, 58, -16, 5, -1 }, { -1, 6, -19, 88, 68, -18, 5, -1 },
144 { -1, 6, -19, 78, 78, -19, 6, -1 }, { -1, 5, -18, 68, 88, -19, 6, -1 },
145 { -1, 5, -16, 58, 97, -19, 5, -1 }, { -1, 4, -14, 48, 105, -18, 5, -1 },
146 { -1, 4, -11, 37, 112, -16, 4, -1 }, { -1, 3, -9, 27, 118, -13, 4, -1 },
147 { 0, 2, -6, 18, 122, -10, 3, -1 }, { 0, 1, -3, 8, 126, -5, 1, 0 }
Arild Fuldseth7acfabb2016-08-26 14:08:58 +0200148#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700149};
150
151DECLARE_ALIGNED(256, static const InterpKernel,
152 sub_pel_filters_8sharp[SUBPEL_SHIFTS]) = {
Arild Fuldseth7acfabb2016-08-26 14:08:58 +0200153#if CONFIG_FILTER_7BIT
154 { 0, 0, 0, 128, 0, 0, 0, 0 }, { -2, 2, -6, 126, 8, -2, 2, 0 },
155 { -2, 6, -12, 124, 16, -6, 4, -2 }, { -2, 8, -18, 120, 26, -10, 6, -2 },
156 { -4, 10, -22, 116, 38, -14, 6, -2 }, { -4, 10, -22, 108, 48, -18, 8, -2 },
157 { -4, 10, -24, 100, 60, -20, 8, -2 }, { -4, 10, -24, 90, 70, -22, 10, -2 },
158 { -4, 12, -24, 80, 80, -24, 12, -4 }, { -2, 10, -22, 70, 90, -24, 10, -4 },
159 { -2, 8, -20, 60, 100, -24, 10, -4 }, { -2, 8, -18, 48, 108, -22, 10, -4 },
160 { -2, 6, -14, 38, 116, -22, 10, -4 }, { -2, 6, -10, 26, 120, -18, 8, -2 },
161 { -2, 4, -6, 16, 124, -12, 6, -2 }, { 0, 2, -2, 8, 126, -6, 2, -2 }
162#else
Yaowu Xuc27fc142016-08-22 16:08:15 -0700163 { 0, 0, 0, 128, 0, 0, 0, 0 }, { -1, 3, -7, 127, 8, -3, 1, 0 },
164 { -2, 5, -13, 125, 17, -6, 3, -1 }, { -3, 7, -17, 121, 27, -10, 5, -2 },
165 { -4, 9, -20, 115, 37, -13, 6, -2 }, { -4, 10, -23, 108, 48, -16, 8, -3 },
166 { -4, 10, -24, 100, 59, -19, 9, -3 }, { -4, 11, -24, 90, 70, -21, 10, -4 },
167 { -4, 11, -23, 80, 80, -23, 11, -4 }, { -4, 10, -21, 70, 90, -24, 11, -4 },
168 { -3, 9, -19, 59, 100, -24, 10, -4 }, { -3, 8, -16, 48, 108, -23, 10, -4 },
169 { -2, 6, -13, 37, 115, -20, 9, -4 }, { -2, 5, -10, 27, 121, -17, 7, -3 },
170 { -1, 3, -6, 17, 125, -13, 5, -2 }, { 0, 1, -3, 8, 127, -7, 3, -1 }
Arild Fuldseth7acfabb2016-08-26 14:08:58 +0200171#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700172};
173
174DECLARE_ALIGNED(256, static const InterpKernel,
175 sub_pel_filters_8smooth[SUBPEL_SHIFTS]) = {
Arild Fuldseth7acfabb2016-08-26 14:08:58 +0200176#if CONFIG_FILTER_7BIT
177 { 0, 0, 0, 128, 0, 0, 0, 0 }, { 0, 2, 28, 62, 34, 2, 0, 0 },
178 { 0, 0, 26, 62, 36, 4, 0, 0 }, { 0, 0, 22, 62, 40, 4, 0, 0 },
179 { 0, 0, 20, 60, 42, 6, 0, 0 }, { 0, 0, 18, 58, 44, 8, 0, 0 },
180 { 0, 0, 16, 56, 46, 10, 0, 0 }, { 0, -2, 16, 54, 48, 12, 0, 0 },
181 { 0, -2, 14, 52, 52, 14, -2, 0 }, { 0, 0, 12, 48, 54, 16, -2, 0 },
182 { 0, 0, 10, 46, 56, 16, 0, 0 }, { 0, 0, 8, 44, 58, 18, 0, 0 },
183 { 0, 0, 6, 42, 60, 20, 0, 0 }, { 0, 0, 4, 40, 62, 22, 0, 0 },
184 { 0, 0, 4, 36, 62, 26, 0, 0 }, { 0, 0, 2, 34, 62, 28, 2, 0 }
185#else
Yaowu Xuc27fc142016-08-22 16:08:15 -0700186 { 0, 0, 0, 128, 0, 0, 0, 0 }, { -3, -1, 32, 64, 38, 1, -3, 0 },
187 { -2, -2, 29, 63, 41, 2, -3, 0 }, { -2, -2, 26, 63, 43, 4, -4, 0 },
188 { -2, -3, 24, 62, 46, 5, -4, 0 }, { -2, -3, 21, 60, 49, 7, -4, 0 },
189 { -1, -4, 18, 59, 51, 9, -4, 0 }, { -1, -4, 16, 57, 53, 12, -4, -1 },
190 { -1, -4, 14, 55, 55, 14, -4, -1 }, { -1, -4, 12, 53, 57, 16, -4, -1 },
191 { 0, -4, 9, 51, 59, 18, -4, -1 }, { 0, -4, 7, 49, 60, 21, -3, -2 },
192 { 0, -4, 5, 46, 62, 24, -3, -2 }, { 0, -4, 4, 43, 63, 26, -2, -2 },
193 { 0, -3, 2, 41, 63, 29, -2, -2 }, { 0, -3, 1, 38, 64, 32, -1, -3 }
Arild Fuldseth7acfabb2016-08-26 14:08:58 +0200194#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700195};
196#endif // CONFIG_EXT_INTERP
197
198#if CONFIG_EXT_INTRA
Yaowu Xuf883b422016-08-30 14:01:10 -0700199const InterpKernel *av1_intra_filter_kernels[INTRA_FILTERS] = {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700200 bilinear_filters, // INTRA_FILTER_LINEAR
201 sub_pel_filters_8, // INTRA_FILTER_8TAP
202 sub_pel_filters_8sharp, // INTRA_FILTER_8TAP_SHARP
203 sub_pel_filters_8smooth, // INTRA_FILTER_8TAP_SMOOTH
204};
205#endif // CONFIG_EXT_INTRA
206
207#if CONFIG_EXT_INTERP
208static const InterpFilterParams
Yaowu Xuf883b422016-08-30 14:01:10 -0700209 av1_interp_filter_params_list[SWITCHABLE_FILTERS + 1] = {
Angie Chiangb9ba5c22016-10-03 16:39:27 -0700210 { (const int16_t *)sub_pel_filters_8, SUBPEL_TAPS, SUBPEL_SHIFTS,
211 EIGHTTAP_REGULAR },
212 { (const int16_t *)sub_pel_filters_8smooth, SUBPEL_TAPS, SUBPEL_SHIFTS,
213 EIGHTTAP_SMOOTH },
Angie Chiangd91ab372016-11-21 18:16:49 -0800214 { (const int16_t *)sub_pel_filters_12sharp, 12, SUBPEL_SHIFTS,
Angie Chiangb9ba5c22016-10-03 16:39:27 -0700215 MULTITAP_SHARP },
216 { (const int16_t *)sub_pel_filters_8smooth2, SUBPEL_TAPS, SUBPEL_SHIFTS,
217 EIGHTTAP_SMOOTH2 },
Angie Chiangb9ba5c22016-10-03 16:39:27 -0700218 { (const int16_t *)bilinear_filters, SUBPEL_TAPS, SUBPEL_SHIFTS,
219 BILINEAR }
Yaowu Xuc27fc142016-08-22 16:08:15 -0700220 };
221#else
222static const InterpFilterParams
Yaowu Xuf883b422016-08-30 14:01:10 -0700223 av1_interp_filter_params_list[SWITCHABLE_FILTERS + 1] = {
Angie Chiangb9ba5c22016-10-03 16:39:27 -0700224 { (const int16_t *)sub_pel_filters_8, SUBPEL_TAPS, SUBPEL_SHIFTS,
225 EIGHTTAP_REGULAR },
226 { (const int16_t *)sub_pel_filters_8smooth, SUBPEL_TAPS, SUBPEL_SHIFTS,
227 EIGHTTAP_SMOOTH },
228 { (const int16_t *)sub_pel_filters_8sharp, SUBPEL_TAPS, SUBPEL_SHIFTS,
229 MULTITAP_SHARP },
230 { (const int16_t *)bilinear_filters, SUBPEL_TAPS, SUBPEL_SHIFTS,
231 BILINEAR }
Yaowu Xuc27fc142016-08-22 16:08:15 -0700232 };
233#endif // CONFIG_EXT_INTERP
234
235#if USE_TEMPORALFILTER_12TAP
Yaowu Xuf883b422016-08-30 14:01:10 -0700236static const InterpFilterParams av1_interp_temporalfilter_12tap = {
Angie Chiangb9ba5c22016-10-03 16:39:27 -0700237 (const int16_t *)sub_pel_filters_temporalfilter_12, 12, SUBPEL_SHIFTS,
238 TEMPORALFILTER_12TAP
Yaowu Xuc27fc142016-08-22 16:08:15 -0700239};
240#endif // USE_TEMPORALFILTER_12TAP
241
Yaowu Xuf883b422016-08-30 14:01:10 -0700242InterpFilterParams av1_get_interp_filter_params(
James Zern7b9407a2016-05-18 23:48:05 -0700243 const InterpFilter interp_filter) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700244#if USE_TEMPORALFILTER_12TAP
245 if (interp_filter == TEMPORALFILTER_12TAP)
Yaowu Xuf883b422016-08-30 14:01:10 -0700246 return av1_interp_temporalfilter_12tap;
Yaowu Xuc27fc142016-08-22 16:08:15 -0700247#endif // USE_TEMPORALFILTER_12TAP
Yaowu Xuf883b422016-08-30 14:01:10 -0700248 return av1_interp_filter_params_list[interp_filter];
Yaowu Xuc27fc142016-08-22 16:08:15 -0700249}
250
James Zern7b9407a2016-05-18 23:48:05 -0700251const int16_t *av1_get_interp_filter_kernel(const InterpFilter interp_filter) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700252#if USE_TEMPORALFILTER_12TAP
253 if (interp_filter == TEMPORALFILTER_12TAP)
Yaowu Xuf883b422016-08-30 14:01:10 -0700254 return av1_interp_temporalfilter_12tap.filter_ptr;
Yaowu Xuc27fc142016-08-22 16:08:15 -0700255#endif // USE_TEMPORALFILTER_12TAP
Yaowu Xuf883b422016-08-30 14:01:10 -0700256 return (const int16_t *)av1_interp_filter_params_list[interp_filter]
Yaowu Xuc27fc142016-08-22 16:08:15 -0700257 .filter_ptr;
258}