Lines Matching defs:avctx
39 AVCodecContext *avctx;
46 static av_cold int ulti_decode_init(AVCodecContext *avctx)
48 UltimotionDecodeContext *s = avctx->priv_data;
50 s->avctx = avctx;
51 s->width = avctx->width;
52 s->height = avctx->height;
56 avctx->pix_fmt = AV_PIX_FMT_YUV410P;
66 static av_cold int ulti_decode_end(AVCodecContext *avctx)
68 UltimotionDecodeContext *s = avctx->priv_data;
217 static int ulti_decode_frame(AVCodecContext *avctx, AVFrame *rframe,
222 UltimotionDecodeContext *s=avctx->priv_data;
233 if ((ret = ff_reget_buffer(avctx, s->frame, 0)) < 0)
251 av_log(avctx, AV_LOG_INFO, "warning: modifier must be 0 or 1, got %i\n", modifier);
274 av_log(avctx, AV_LOG_INFO, "warning: unknown escape 0x%02X\n", idx);
416 av_log(avctx, AV_LOG_ERROR,