Browse Source

More comments improvement

Originally committed as revision 13922 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Vitor Sessak 17 years ago
parent
commit
d1024e0719
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libavcodec/ra144.c

+ 3
- 1
libavcodec/ra144.c View File

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


Loading…
Cancel
Save