diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-06-23 20:26:24 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-06-23 20:26:24 +0000 |
commit | d1024e0719cc5265347c3749da912daea36a8b27 (patch) | |
tree | 4fc0072c7ab241df84da692bf1ec8a55b20fbb89 /libavcodec | |
parent | c17fd98cdcf4eb10a9f6fa7be398690d06d8efe3 (diff) | |
download | ffmpeg-d1024e0719cc5265347c3749da912daea36a8b27.tar.gz |
More comments improvement
Originally committed as revision 13922 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/ra144.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index c162e76a81..f5d1be3ec0 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -41,7 +41,9 @@ typedef struct { /** the current subblock padded by the last 10 values of the previous one*/ int16_t curr_sblock[50]; - uint16_t adapt_cb[148]; ///< adaptive codebook + /** adaptive codebook. Its size is two units bigger to avoid a + * buffer overflow */ + uint16_t adapt_cb[148]; } RA144Context; static int ra144_decode_init(AVCodecContext * avctx) |