[FFmpeg-cvslog] r15847 - trunk/libavcodec/audioconvert.c
cehoyos
subversion
Mon Nov 17 13:48:31 CET 2008
Author: cehoyos
Date: Mon Nov 17 13:48:31 2008
New Revision: 15847
Log:
One const is enough.
Modified:
trunk/libavcodec/audioconvert.c
Modified: trunk/libavcodec/audioconvert.c
==============================================================================
--- trunk/libavcodec/audioconvert.c (original)
+++ trunk/libavcodec/audioconvert.c Mon Nov 17 13:48:31 2008
@@ -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 },
More information about the ffmpeg-cvslog
mailing list