]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/wma.c
avcodec/snowenc-test: use av_mallocz_array()
[ffmpeg] / libavcodec / wma.c
index 841a2be08739b5bc9318b4d154e0eae6e4ed23da..fa5c8877340b333356361a87fb344f2c8f5ece06 100644 (file)
@@ -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;
     }