Browse Source

One const is enough.

Originally committed as revision 15847 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Carl Eugen Hoyos 16 years ago
parent
commit
7e8efe18ba
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/audioconvert.c

+ 1
- 1
libavcodec/audioconvert.c View File

@@ -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 },


Loading…
Cancel
Save