• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/

Lines Matching defs:tc

115         int8_t tc[4];
116 tc[0] = tc0_table[index_a][bS[0]];
117 tc[1] = tc0_table[index_a][bS[1]];
118 tc[2] = tc0_table[index_a][bS[2]];
119 tc[3] = tc0_table[index_a][bS[3]];
120 h->h264dsp.h264_h_loop_filter_luma(pix, stride, alpha, beta, tc);
137 int8_t tc[4];
138 tc[0] = tc0_table[index_a][bS[0]]+1;
139 tc[1] = tc0_table[index_a][bS[1]]+1;
140 tc[2] = tc0_table[index_a][bS[2]]+1;
141 tc[3] = tc0_table[index_a][bS[3]]+1;
142 h->h264dsp.h264_h_loop_filter_chroma(pix, stride, alpha, beta, tc);
160 int8_t tc[4];
161 tc[0] = tc0_table[index_a][bS[0*bsi]];
162 tc[1] = tc0_table[index_a][bS[1*bsi]];
163 tc[2] = tc0_table[index_a][bS[2*bsi]];
164 tc[3] = tc0_table[index_a][bS[3*bsi]];
165 h->h264dsp.h264_h_loop_filter_luma_mbaff(pix, stride, alpha, beta, tc);
183 int8_t tc[4];
184 tc[0] = tc0_table[index_a][bS[0*bsi]] + 1;
185 tc[1] = tc0_table[index_a][bS[1*bsi]] + 1;
186 tc[2] = tc0_table[index_a][bS[2*bsi]] + 1;
187 tc[3] = tc0_table[index_a][bS[3*bsi]] + 1;
188 h->h264dsp.h264_h_loop_filter_chroma_mbaff(pix, stride, alpha, beta, tc);
205 int8_t tc[4];
206 tc[0] = tc0_table[index_a][bS[0]];
207 tc[1] = tc0_table[index_a][bS[1]];
208 tc[2] = tc0_table[index_a][bS[2]];
209 tc[3] = tc0_table[index_a][bS[3]];
210 h->h264dsp.h264_v_loop_filter_luma(pix, stride, alpha, beta, tc);
227 int8_t tc[4];
228 tc[0] = tc0_table[index_a][bS[0]]+1;
229 tc[1] = tc0_table[index_a][bS[1]]+1;
230 tc[2] = tc0_table[index_a][bS[2]]+1;
231 tc[3] = tc0_table[index_a][bS[3]]+1;
232 h->h264dsp.h264_v_loop_filter_chroma(pix, stride, alpha, beta, tc);