diff options
author | Carl Eugen Hoyos | 2010-02-28 18:50:56 +0000 |
---|---|---|
committer | Carl Eugen Hoyos | 2010-02-28 18:50:56 +0000 |
commit | 5dfa637ccac6476c1eece6a11b21f156f458a323 (patch) | |
tree | 6245714013b138d81c6b1ad472ab78ba13679a77 /libavcodec/audioconvert.c | |
parent | 82f50f820e608f1798230c168d6e98fb32dd39d1 (diff) |
Make function get_channel_name() static: It is only used in audioconvert.c.
Originally committed as revision 22114 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/audioconvert.c')
-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 91ea7abdc4..8410d29489 100644 --- a/libavcodec/audioconvert.c +++ b/libavcodec/audioconvert.c @@ -79,7 +79,7 @@ static const char* const channel_names[]={ [30] = "DR", }; -const char *get_channel_name(int channel_id) +static const char *get_channel_name(int channel_id) { if (channel_id<0 || channel_id>=FF_ARRAY_ELEMS(channel_names)) return NULL; |