Commit 02db78d4 authored by lorenm's avatar lorenm

oops, potential overflow on really large blocks


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10587 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a7c34987
......@@ -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 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment