Lines Matching defs:avctx
94 static av_cold int xface_decode_init(AVCodecContext *avctx)
96 if (avctx->width || avctx->height) {
97 if (avctx->width != XFACE_WIDTH || avctx->height != XFACE_HEIGHT) {
98 av_log(avctx, AV_LOG_ERROR,
100 avctx->width, avctx->height, XFACE_WIDTH, XFACE_HEIGHT);
105 avctx->width = XFACE_WIDTH;
106 avctx->height = XFACE_HEIGHT;
107 avctx->pix_fmt = AV_PIX_FMT_MONOWHITE;
112 static int xface_decode_frame(AVCodecContext *avctx, AVFrame *frame,
115 XFaceContext *xface = avctx->priv_data;
122 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
133 av_log(avctx, AV_LOG_WARNING,