[FFmpeg-cvslog] avcodec/wma: Print more details in case of spectral RLE overflows

Michael Niedermayer git at videolan.org
Mon Jan 12 14:15:05 CET 2015


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Jan 12 13:56:13 2015 +0100| [365ef88d5df4756942324b633cc439154e468276] | committer: Michael Niedermayer

avcodec/wma: Print more details in case of spectral RLE overflows

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=365ef88d5df4756942324b633cc439154e468276
---

 libavcodec/wma.c |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/libavcodec/wma.c b/libavcodec/wma.c
index 841a2be..fa5c887 100644
--- a/libavcodec/wma.c
+++ b/libavcodec/wma.c
@@ -487,7 +487,11 @@ int ff_wma_run_level_decode(AVCodecContext *avctx, GetBitContext *gb,
     }
     /** NOTE: EOB can be omitted */
     if (offset > num_coefs) {
-        av_log(avctx, AV_LOG_ERROR, "overflow in spectral RLE, ignoring\n");
+        av_log(avctx, AV_LOG_ERROR,
+               "overflow (%d > %d) in spectral RLE, ignoring\n",
+               offset,
+               num_coefs
+              );
         return -1;
     }
 



More information about the ffmpeg-cvslog mailing list