diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-03-13 21:18:34 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-03-13 21:20:12 +0100 |
commit | 12e25ed284592b32c954d471e9b7b1e5a0dbf18d (patch) | |
tree | 4653146a75530613167c1ff5b4f21ce38eb448a5 /libavcodec/mpc8.c | |
parent | 6d97484d72e33f7dde9493a9ead1a72e2f029605 (diff) | |
download | ffmpeg-12e25ed284592b32c954d471e9b7b1e5a0dbf18d.tar.gz |
avcodec: av_log_missing_feature(1) ---> avpriv_request_sample()
Diffstat (limited to 'libavcodec/mpc8.c')
-rw-r--r-- | libavcodec/mpc8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpc8.c b/libavcodec/mpc8.c index 7f920d8b54..d14b8f14f1 100644 --- a/libavcodec/mpc8.c +++ b/libavcodec/mpc8.c @@ -130,7 +130,7 @@ static av_cold int mpc8_decode_init(AVCodecContext * avctx) c->maxbands = get_bits(&gb, 5) + 1; channels = get_bits(&gb, 4) + 1; if (channels > 2) { - av_log_missing_feature(avctx, "Multichannel MPC SV8", 1); + avpriv_request_sample(avctx, "Multichannel MPC SV8"); return AVERROR_PATCHWELCOME; } c->MSS = get_bits1(&gb); |