diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-05-14 14:07:50 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-05-14 14:07:50 +0000 |
commit | e36d79c837cbf47de524763fc1cbd49655e5f1a6 (patch) | |
tree | 84c9de3bd57a7d402006da7d6fd1640172c0369c /libavcodec/svq3.c | |
parent | 37c26ae9ff72765c5470dba121408987e1f37273 (diff) | |
download | ffmpeg-e36d79c837cbf47de524763fc1cbd49655e5f1a6.tar.gz |
Change some leftover __attribute__((unused)) and __attribute__((used)) to
attribute_unused and attribute_used respectively to ease compiling on non-gcc.
Originally committed as revision 9024 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r-- | libavcodec/svq3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index db601010bf..eb79169e00 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -183,8 +183,8 @@ static void svq3_add_idct_c (uint8_t *dst, DCTELEM *block, int stride, int qp, i static void pred4x4_down_left_svq3_c(uint8_t *src, uint8_t *topright, int stride){ LOAD_TOP_EDGE LOAD_LEFT_EDGE - const __attribute__((unused)) int unu0= t0; - const __attribute__((unused)) int unu1= l0; + const attribute_unused int unu0= t0; + const attribute_unused int unu1= l0; src[0+0*stride]=(l1 + t1)>>1; src[1+0*stride]= |