Lines Matching defs:avctx
240 av_cold void ff_idctdsp_init(IDCTDSPContext *c, AVCodecContext *avctx)
242 av_unused const unsigned high_bit_depth = avctx->bits_per_raw_sample > 8;
244 if (avctx->lowres==1) {
249 } else if (avctx->lowres==2) {
254 } else if (avctx->lowres==3) {
260 if (avctx->bits_per_raw_sample == 10 || avctx->bits_per_raw_sample == 9) {
273 } else if (avctx->bits_per_raw_sample == 12) {
279 if (avctx->idct_algo == FF_IDCT_INT) {
285 } else if (avctx->idct_algo == FF_IDCT_FAAN) {
304 if (CONFIG_MPEG4_DECODER && avctx->idct_algo == FF_IDCT_XVID)
305 ff_xvid_idct_init(c, avctx);
308 ff_idctdsp_init_aarch64(c, avctx, high_bit_depth);
310 ff_idctdsp_init_alpha(c, avctx, high_bit_depth);
312 ff_idctdsp_init_arm(c, avctx, high_bit_depth);
314 ff_idctdsp_init_ppc(c, avctx, high_bit_depth);
316 ff_idctdsp_init_x86(c, avctx, high_bit_depth);
318 ff_idctdsp_init_mips(c, avctx, high_bit_depth);
320 ff_idctdsp_init_loongarch(c, avctx, high_bit_depth);