Lines Matching defs:avctx
80 av_log(s->avctx, AV_LOG_ERROR, "internal error in WMV2 abt\n");
95 if (s->avctx->flags & AV_CODEC_FLAG_GRAY)
174 if (s->avctx->extradata_size < 4)
177 init_get_bits(&gb, s->avctx->extradata, 32);
194 if (s->avctx->debug & FF_DEBUG_PICT_INFO)
195 av_log(s->avctx, AV_LOG_DEBUG,
216 av_log(s->avctx, AV_LOG_DEBUG, "I7:%X/\n", code);
273 if (s->avctx->debug & FF_DEBUG_PICT_INFO) {
274 av_log(s->avctx, AV_LOG_DEBUG,
320 if (s->avctx->debug & FF_DEBUG_PICT_INFO) {
321 av_log(s->avctx, AV_LOG_DEBUG,
526 av_log(s->avctx, AV_LOG_ERROR,
534 ff_dlog(s->avctx, "%d%d ", s->inter_intra_pred, cbp);
535 ff_dlog(s->avctx, "I at %d %d %d %06X\n", s->mb_x, s->mb_y,
542 ff_dlog(s->avctx, "%d%d %d %d/",
553 av_log(s->avctx, AV_LOG_ERROR,
564 static av_cold int wmv2_decode_init(AVCodecContext *avctx)
566 WMV2DecContext *const w = avctx->priv_data;
572 if ((ret = ff_msmpeg4_decode_init(avctx)) < 0)
581 return ff_intrax8_common_init(avctx, &w->x8, &w->s.idsp,
586 static av_cold int wmv2_decode_end(AVCodecContext *avctx)
588 WMV2DecContext *const w = avctx->priv_data;
591 return ff_h263_decode_end(avctx);