Browse Source

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
tags/v0.5
Alexander E. Patrakov Michael Niedermayer 17 years ago
parent
commit
4df7beb368
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/dca.c

+ 1
- 1
libavcodec/dca.c View File

@@ -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 {


Loading…
Cancel
Save