From 4df7beb3686caf2df345d2e10564aa8cf6c24a65 Mon Sep 17 00:00:00 2001 From: "Alexander E. Patrakov" Date: Sat, 23 Aug 2008 13:29:13 +0000 Subject: [PATCH] Increase buffer size to 16384 patch by Alexander E. Patrakov" patrakov gmail This fixes a (probably not exploitable) buffer overflow (apparently unknown to its author). Originally committed as revision 14917 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dca.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/dca.c b/libavcodec/dca.c index 8cca01a020..83b448858d 100644 --- a/libavcodec/dca.c +++ b/libavcodec/dca.c @@ -69,7 +69,7 @@ enum DCAMode { #define HEADER_SIZE 14 #define CONVERT_BIAS 384 -#define DCA_MAX_FRAME_SIZE 16383 +#define DCA_MAX_FRAME_SIZE 16384 /** Bit allocation */ typedef struct {