• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching refs:avctx

101  *  @param[in]     avctx     pointer to the AVCodecContext
104 static int decode_pic_hdr(IVI45DecContext *ctx, AVCodecContext *avctx)
110 av_log(avctx, AV_LOG_ERROR, "Invalid picture start code!\n");
117 av_log(avctx, AV_LOG_ERROR, "Invalid frame type: %d\n", ctx->frame_type);
135 av_log(avctx, AV_LOG_ERROR, "Sync bit is set!\n");
143 av_dlog(avctx, "Null frame encountered!\n");
152 av_dlog(avctx, "Password-protected clip!\n");
178 av_log(avctx, AV_LOG_ERROR, "Only YVU9 picture format is supported!\n");
191 av_log(avctx, AV_LOG_ERROR, "Scalability: unsupported subdivision! Luma bands: %d, chroma bands: %d\n",
199 av_log(avctx, AV_LOG_ERROR, "Couldn't reallocate color planes!\n");
216 av_log(avctx, AV_LOG_ERROR,
229 if (ff_ivi_dec_huff_desc(&ctx->gb, get_bits1(&ctx->gb), IVI_MB_HUFF, &ctx->mb_vlc, avctx) ||
230 ff_ivi_dec_huff_desc(&ctx->gb, get_bits1(&ctx->gb), IVI_BLK_HUFF, &ctx->blk_vlc, avctx))
247 av_dlog(avctx, "Pic hdr extension encountered!\n");
252 av_log(avctx, AV_LOG_ERROR, "Bad blocks bits encountered!\n");
266 * @param[in] avctx pointer to the AVCodecContext
270 AVCodecContext *avctx)
279 av_log(avctx, AV_LOG_ERROR, "Invalid band header sequence!\n");
293 av_log(avctx, AV_LOG_ERROR, "Invalid/unsupported mv resolution: %d!\n",
308 av_log(avctx, AV_LOG_ERROR, "Invalid block size!\n");
323 avpriv_request_sample(avctx, "Transform %d", transform_id);
328 avpriv_request_sample(avctx, "DCT transform");
333 av_log(avctx, AV_LOG_ERROR, "wrong transform size!\n");
351 av_log(avctx, AV_LOG_ERROR, "transform and block size mismatch (%d != %d)\n", band->transform_size, band->blk_size);
357 av_log(avctx, AV_LOG_ERROR, "Custom scan pattern encountered!\n");
362 av_log(avctx, AV_LOG_ERROR, "mismatching scan table!\n");
366 av_log(avctx, AV_LOG_ERROR, "mismatching scan table!\n");
375 av_log(avctx, AV_LOG_ERROR, "Custom quant matrix encountered!\n");
379 avpriv_request_sample(avctx, "Quantization matrix %d",
386 av_log(avctx, AV_LOG_ERROR,
393 av_log(avctx, AV_LOG_ERROR, "Invalid quant matrix for 4x4 block encountered!\n");
398 av_log(avctx, AV_LOG_ERROR, "mismatching scan table!\n");
402 av_log(avctx, AV_LOG_ERROR, "mismatching transform_size!\n");
411 &band->blk_vlc, avctx))
422 av_log(avctx, AV_LOG_ERROR, "Too many corrections: %d\n",
448 av_log(avctx, AV_LOG_ERROR, "band->scan not set\n");
463 * @param[in] avctx pointer to the AVCodecContext
467 IVITile *tile, AVCodecContext *avctx)
486 av_log(avctx, AV_LOG_ERROR, "num_MBs mismatch %d %d %d %d\n", tile->width, tile->height, band->mb_size, tile->num_MBs);
502 av_log(avctx, AV_LOG_ERROR, "Empty macroblock in an INTRA picture!\n");
530 av_log(avctx, AV_LOG_ERROR, "ref_mb unavailable\n");
603 av_log(avctx, AV_LOG_ERROR, "motion vector %d %d outside reference\n", x*s + mb->mv_x, y*s + mb->mv_y);
662 static av_cold int decode_init(AVCodecContext *avctx)
664 IVI45DecContext *ctx = avctx->priv_data;
676 avctx->pix_fmt = AV_PIX_FMT_YUV410P;