Lines Matching defs:avctx

211                          IVIHuffTab *huff_tab, AVCodecContext *avctx)
228 av_log(avctx, AV_LOG_ERROR, "Empty custom Huffman table!\n");
246 av_log(avctx, AV_LOG_ERROR,
291 av_cold int ff_ivi_init_planes(AVCodecContext *avctx, IVIPlaneDesc *planes, const IVIPicConfig *cfg,
301 if (av_image_check_size2(cfg->pic_width, cfg->pic_height, avctx->max_pixels, AV_PIX_FMT_YUV410P, 0, avctx) < 0 ||
492 AVCodecContext *avctx)
512 av_log(avctx, AV_LOG_ERROR, "Scan pattern is not set.\n");
535 av_log(avctx, AV_LOG_ERROR, "Invalid sym encountered: %"PRIu32".\n", sym);
549 ff_dlog(avctx, "Val = 0 encountered!\n");
597 IVITile *tile, AVCodecContext *avctx)
632 if (avctx->codec_id == AV_CODEC_ID_INDEO4)
705 buf_offs, avctx);
743 * @param[in] avctx ptr to the AVCodecContext
748 static int ivi_process_empty_tile(AVCodecContext *avctx, const IVIBandDesc *band,
764 av_log(avctx, AV_LOG_ERROR, "Allocated tile size %d mismatches "
819 av_log(avctx, AV_LOG_ERROR, "MV out of bounds\n");
938 * @param[in] avctx ptr to the AVCodecContext
942 IVIBandDesc *band, AVCodecContext *avctx)
949 av_log(avctx, AV_LOG_ERROR, "Band buffer points to no data!\n");
965 result = ctx->decode_band_hdr(ctx, band, avctx);
967 av_log(avctx, AV_LOG_ERROR, "Error while decoding band header: %d\n",
973 av_log(avctx, AV_LOG_ERROR, "Empty band encountered!\n");
997 av_log(avctx, AV_LOG_ERROR, "MB sizes mismatch: %d vs. %d\n",
1003 result = ivi_process_empty_tile(avctx, band, tile,
1007 ff_dlog(avctx, "Empty tile encountered!\n");
1011 av_log(avctx, AV_LOG_ERROR, "Tile data size is zero!\n");
1016 result = ctx->decode_mb_info(ctx, band, tile, avctx);
1020 result = ivi_decode_blocks(&ctx->gb, band, tile, avctx);
1022 av_log(avctx, AV_LOG_ERROR,
1028 av_log(avctx, AV_LOG_ERROR,
1055 av_log(avctx, AV_LOG_ERROR,
1068 int ff_ivi_decode_frame(AVCodecContext *avctx, AVFrame *frame,
1071 IVI45DecContext *ctx = avctx->priv_data;
1082 result = ctx->decode_pic_hdr(ctx, avctx);
1084 av_log(avctx, AV_LOG_ERROR,
1103 avpriv_report_missing_feature(avctx, "Password-protected clip");
1108 av_log(avctx, AV_LOG_ERROR, "Color planes not initialized yet\n");
1118 result = decode_band(ctx, &ctx->planes[p].bands[b], avctx);
1120 av_log(avctx, AV_LOG_ERROR,
1142 result = ff_set_dimensions(avctx, ctx->planes[0].width, ctx->planes[0].height);
1146 if ((result = ff_get_buffer(avctx, frame, 0)) < 0)
1185 ff_ivi_decode_frame(avctx, ctx->p_frame, &ctx->got_p_frame, &pkt);
1191 av_log(avctx, AV_LOG_DEBUG, "This video uses scalability mode\n");
1193 av_log(avctx, AV_LOG_DEBUG, "This video uses local decoding\n");
1195 av_log(avctx, AV_LOG_DEBUG, "This video contains B-frames\n");
1197 av_log(avctx, AV_LOG_DEBUG, "Transparency mode is enabled\n");
1199 av_log(avctx, AV_LOG_DEBUG, "This video uses Haar transform\n");
1201 av_log(avctx, AV_LOG_DEBUG, "This video uses fullpel motion vectors\n");
1211 av_cold int ff_ivi_decode_close(AVCodecContext *avctx)
1213 IVI45DecContext *ctx = avctx->priv_data;