diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2007-05-30 09:32:25 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2007-05-30 09:32:25 +0000 |
commit | 154e30f6c2f67317fa9ab2745ed58716a9c47cc8 (patch) | |
tree | 97189f4b7b599e5a5d5e3ebd308dcfb787608250 /libavcodec/4xm.c | |
parent | 9f6c879365f9f57b941a48c01fd2f9d8790508e3 (diff) | |
download | ffmpeg-154e30f6c2f67317fa9ab2745ed58716a9c47cc8.tar.gz |
rename attribute_unused to av_unused and moves its declaration to common.h
patch by Carl Eugen Hoyos cehoyos chez ag or at
original thread: [FFmpeg-devel] [PATCH] attribute_unused -> av_unused
date: 05/29/2007 01:23 PM
Originally committed as revision 9155 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 a32a98674b..52b13124de 100644 --- a/libavcodec/4xm.c +++ b/libavcodec/4xm.c @@ -555,7 +555,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 unsigned int bitstream_size= get32(buf); - const int token_count attribute_unused = get32(buf + bitstream_size + 8); + const int token_count av_unused = get32(buf + bitstream_size + 8); unsigned int prestream_size= 4*get32(buf + bitstream_size + 4); uint8_t *prestream= buf + bitstream_size + 12; |