diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-09 00:41:34 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-12 20:56:54 +0200 |
commit | 717addecad77d85d329a4b502f4098d4912679d7 (patch) | |
tree | a947a67910599b4bc30e26fe2e5726f90664adf3 /libavcodec/wmavoice.c | |
parent | 9e6ea3cef9927be46973c8e972656b4264f8f1f6 (diff) | |
download | ffmpeg-717addecad77d85d329a4b502f4098d4912679d7.tar.gz |
Use proper return values in case of missing features
Diffstat (limited to 'libavcodec/wmavoice.c')
-rw-r--r-- | libavcodec/wmavoice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmavoice.c b/libavcodec/wmavoice.c index 4a7ba6dabc..2ed79a6302 100644 --- a/libavcodec/wmavoice.c +++ b/libavcodec/wmavoice.c @@ -1763,7 +1763,7 @@ static int synth_superframe(AVCodecContext *ctx, int *got_frame_ptr) * the wild yet. */ if (!get_bits1(gb)) { av_log_missing_feature(ctx, "WMAPro-in-WMAVoice support", 1); - return -1; + return AVERROR_PATCHWELCOME; } /* (optional) nr. of samples in superframe; always <= 480 and >= 0 */ |