Mercurial > libavcodec.hg
changeset 1478:e0402982c1a0 libavcodec
Fix compilation with ccc
author | mellum |
---|---|
date | Mon, 22 Sep 2003 20:29:58 +0000 |
parents | afc7baa19b62 |
children | f718b60fedc2 |
files | 4xm.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/4xm.c Fri Sep 19 04:41:02 2003 +0000 +++ b/4xm.c Mon Sep 22 20:29:58 2003 +0000 @@ -551,7 +551,7 @@ 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;