summaryrefslogtreecommitdiff
path: root/libavcodec/rangecoder.h
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2007-05-30 09:32:25 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2007-05-30 09:32:25 +0000
commit154e30f6c2f67317fa9ab2745ed58716a9c47cc8 (patch)
tree97189f4b7b599e5a5d5e3ebd308dcfb787608250 /libavcodec/rangecoder.h
parent9f6c879365f9f57b941a48c01fd2f9d8790508e3 (diff)
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/rangecoder.h')
-rw-r--r--libavcodec/rangecoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rangecoder.h b/libavcodec/rangecoder.h
index 3aac8c6238..7844058ba0 100644
--- a/libavcodec/rangecoder.h
+++ b/libavcodec/rangecoder.h
@@ -103,7 +103,7 @@ static inline void refill(RangeCoder *c){
static inline int get_rac(RangeCoder *c, uint8_t * const state){
int range1= (c->range * (*state)) >> 8;
- int attribute_unused one_mask;
+ int av_unused one_mask;
c->range -= range1;
#if 1