diff options
author | Falk Hüffner <mellum@users.sourceforge.net> | 2003-09-22 20:29:58 +0000 |
---|---|---|
committer | Falk Hüffner <mellum@users.sourceforge.net> | 2003-09-22 20:29:58 +0000 |
commit | e4e70d2e2db9d47d6e85a5136aad0147eb8c5809 (patch) | |
tree | cc4e51fe6047db9f7a5fa69ca28b656e2561e2b4 /libavcodec/4xm.c | |
parent | fd0f45e58b010c0d7049914a392c3e96a2223107 (diff) | |
download | ffmpeg-e4e70d2e2db9d47d6e85a5136aad0147eb8c5809.tar.gz |
Fix compilation with ccc
Originally committed as revision 2298 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/4xm.c')
-rw-r--r-- | libavcodec/4xm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c index 04c20ff97c..682143340c 100644 --- a/libavcodec/4xm.c +++ b/libavcodec/4xm.c @@ -551,7 +551,7 @@ static int decode_i_frame(FourXContext *f, uint8_t *buf, int length){ uint16_t *dst= (uint16_t*)f->current_picture.data[0]; const int stride= f->current_picture.linesize[0]>>1; const int bitstream_size= get32(buf); - const int token_count __attribute((unused)) = get32(buf + bitstream_size + 8); + const int token_count __attribute__((unused)) = get32(buf + bitstream_size + 8); int prestream_size= 4*get32(buf + bitstream_size + 4); uint8_t *prestream= buf + bitstream_size + 12; |