diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-03-15 17:13:52 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-03-15 18:10:28 +0000 |
commit | a9b424879f101b56cf75c2db889477bba188fe20 (patch) | |
tree | a9e67fe3fba92feaca7bdeb8122ebe2772f339ae /libavcodec/vc1dec.c | |
parent | 3d751b1ef6619b20631b17c880aa96f2dd3a11dd (diff) | |
download | ffmpeg-a9b424879f101b56cf75c2db889477bba188fe20.tar.gz |
lavc & lavf: replace deprecated av_log* functions
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/vc1dec.c')
-rw-r--r-- | libavcodec/vc1dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index d7b2f9c7d1..aea2bbb897 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -5287,7 +5287,7 @@ static av_cold int vc1_decode_init(AVCodecContext *avctx) v->output_height > 1 << 14) return -1; if ((v->sprite_width&1) || (v->sprite_height&1)) { - av_log_ask_for_sample(avctx, "odd sprites are not supported\n"); + avpriv_request_sample(avctx, "odd sprites support"); return AVERROR_PATCHWELCOME; } } |