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/dvdata.h | |
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/dvdata.h')
-rw-r--r-- | libavcodec/dvdata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dvdata.h b/libavcodec/dvdata.h index e688ffbb05..7670ce23a2 100644 --- a/libavcodec/dvdata.h +++ b/libavcodec/dvdata.h @@ -2534,7 +2534,7 @@ static const uint8_t dv_audio_shuffle625[12][9] = { { 31, 67, 103, 21, 57, 93, 11, 47, 83}, }; -static const __attribute__((unused)) int dv_audio_frequency[3] = { +static const attribute_unused int dv_audio_frequency[3] = { 48000, 44100, 32000, }; |