diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2008-11-17 12:48:31 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2008-11-17 12:48:31 +0000 |
commit | 7e8efe18ba9908baec46d0fe46eb7e7add725119 (patch) | |
tree | fc364057478b676caa6520ec3df26020d7c034c0 | |
parent | 5155b8395c0fe6079bd46cb821423c47b02b5c0b (diff) | |
download | ffmpeg-7e8efe18ba9908baec46d0fe46eb7e7add725119.tar.gz |
One const is enough.
Originally committed as revision 15847 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/audioconvert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/audioconvert.c b/libavcodec/audioconvert.c index 8e09e4c9af..8c6a6b848f 100644 --- a/libavcodec/audioconvert.c +++ b/libavcodec/audioconvert.c @@ -104,7 +104,7 @@ static const struct { const char *name; int nb_channels; int64_t layout; -} const channel_layout_map[] = { +} channel_layout_map[] = { { "mono", 1, CH_LAYOUT_MONO }, { "stereo", 2, CH_LAYOUT_STEREO }, { "surround", 3, CH_LAYOUT_SURROUND }, |