diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-04-21 19:38:49 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-04-21 19:58:54 +0200 |
commit | 70fb031ce27ce200026de2ea77ec038e2c2e141f (patch) | |
tree | 26522fb83f66d3d0432219ec4f555ff674b7bb0b /libavcodec/v210x.c | |
parent | 8d67218bd73744c367450d8b8ecc5a6e6c42bd11 (diff) | |
download | ffmpeg-70fb031ce27ce200026de2ea77ec038e2c2e141f.tar.gz |
Use av_log_ask_for_sample() where appropriate.
Diffstat (limited to 'libavcodec/v210x.c')
-rw-r--r-- | libavcodec/v210x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/v210x.c b/libavcodec/v210x.c index 3d8bdcf780..511548f366 100644 --- a/libavcodec/v210x.c +++ b/libavcodec/v210x.c @@ -52,7 +52,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac } if(avpkt->size > avctx->width * avctx->height * 8 / 3){ - av_log(avctx, AV_LOG_ERROR, "Probably padded data, need sample!\n"); + av_log_ask_for_sample(avctx, "Probably padded data\n"); } pic->reference= 0; |