Lines Matching refs:idct
200 void (*idct)(uint8_t *, int16_t *, int) = NULL;
202 case (4 << 1) | 0: idct = h.h264_idct_add; break;
203 case (4 << 1) | 1: idct = h.h264_idct_dc_add; break;
204 case (8 << 1) | 0: idct = h.h264_idct8_add; break;
205 case (8 << 1) | 1: idct = h.h264_idct8_dc_add; break;
207 if (check_func(idct, "h264_idct%d_add%s_%dbpp", sz, dc ? "_dc" : "", bit_depth)) {
248 void (*idct)(uint8_t *, const int *, int16_t *, int, const uint8_t[]) = NULL;
254 idct = h.h264_idct_add16;
258 idct = h.h264_idct_add16intra;
263 idct = h.h264_idct8_add4;
302 if (check_func(idct, "%s_%dbpp", name, bit_depth)) {
447 report("idct");