Lines Matching defs:avctx
50 AVCodecContext *avctx;
58 av_log(s->avctx, AV_LOG_ERROR, \
76 int width = s->avctx->width;
92 av_log(s->avctx, AV_LOG_ERROR, "First chunk byte is 0x%02x instead of 0xe1\n",
100 av_log(s->avctx, AV_LOG_WARNING,
107 total_blocks = ((s->avctx->width + 3) / 4) * ((s->avctx->height + 3) / 4);
112 if ((ret = ff_reget_buffer(s->avctx, s->frame, 0)) < 0)
235 av_log(s->avctx, AV_LOG_ERROR, "Unknown opcode %d in rpza chunk."
245 static av_cold int rpza_decode_init(AVCodecContext *avctx)
247 RpzaContext *s = avctx->priv_data;
249 s->avctx = avctx;
250 avctx->pix_fmt = AV_PIX_FMT_RGB555;
259 static int rpza_decode_frame(AVCodecContext *avctx, AVFrame *rframe,
262 RpzaContext *s = avctx->priv_data;
280 static av_cold int rpza_decode_end(AVCodecContext *avctx)
282 RpzaContext *s = avctx->priv_data;