summaryrefslogtreecommitdiff
path: root/libavcodec/4xm.c
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2003-09-09 22:48:19 +0000
committerFabrice Bellard <fabrice@bellard.org>2003-09-09 22:48:19 +0000
commit83586795a2a8e1fe3fcbecc63eb432835ce3bd73 (patch)
tree30222a8be0748af81b65574b622c124dc5557d3b /libavcodec/4xm.c
parent3bb1f2da027fac44ec87ab6584061b3ce7c0ab37 (diff)
remove warnings
Originally committed as revision 2245 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/4xm.c')
-rw-r--r--libavcodec/4xm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c
index 80e87c3797..04c20ff97c 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= 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;