forked from FFmpeg/FFmpeg
oops, potential overflow on really large blocks
Originally committed as revision 10587 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
bd49d4fd49
commit
0d2caa37c5
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ typedef struct FlacSubframe {
|
|||
int shift;
|
||||
RiceContext rc;
|
||||
int32_t samples[FLAC_MAX_BLOCKSIZE];
|
||||
int32_t residual[FLAC_MAX_BLOCKSIZE];
|
||||
int32_t residual[FLAC_MAX_BLOCKSIZE+1];
|
||||
} FlacSubframe;
|
||||
|
||||
typedef struct FlacFrame {
|
||||
|
|
Loading…
Add table
Reference in a new issue