Lines Matching defs:avctx
81 av_cold void ff_pixblockdsp_init(PixblockDSPContext *c, AVCodecContext *avctx)
83 av_unused const unsigned high_bit_depth = avctx->bits_per_raw_sample > 8;
88 switch (avctx->bits_per_raw_sample) {
97 if (avctx->bits_per_raw_sample<=8 || avctx->codec_type != AVMEDIA_TYPE_VIDEO) {
105 ff_pixblockdsp_init_aarch64(c, avctx, high_bit_depth);
107 ff_pixblockdsp_init_alpha(c, avctx, high_bit_depth);
109 ff_pixblockdsp_init_arm(c, avctx, high_bit_depth);
111 ff_pixblockdsp_init_ppc(c, avctx, high_bit_depth);
113 ff_pixblockdsp_init_x86(c, avctx, high_bit_depth);
115 ff_pixblockdsp_init_mips(c, avctx, high_bit_depth);