OSDN Git Service

apedec: correct an error message
authorJustin Ruggles <justin.ruggles@gmail.com>
Tue, 11 Oct 2011 15:54:42 +0000 (11:54 -0400)
committerJustin Ruggles <justin.ruggles@gmail.com>
Fri, 28 Oct 2011 15:47:27 +0000 (11:47 -0400)
libavcodec/apedec.c

index b0d19cd..9a15bfb 100644 (file)
@@ -819,9 +819,7 @@ static int ape_decode_frame(AVCodecContext *avctx,
 
     /* should not happen but who knows */
     if (BLOCKS_PER_LOOP * 2 * avctx->channels > *data_size) {
-        av_log (avctx, AV_LOG_ERROR, "Packet size is too big to be handled "
-                "in lavc! (max is %d where you have %d)\n",
-                *data_size, s->samples * 2 * avctx->channels);
+        av_log (avctx, AV_LOG_ERROR, "Output buffer is too small.\n");
         return -1;
     }