From 5dfa637ccac6476c1eece6a11b21f156f458a323 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sun, 28 Feb 2010 18:50:56 +0000 Subject: [PATCH] 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 --- libavcodec/audioconvert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/audioconvert.c b/libavcodec/audioconvert.c index 91ea7ab..8410d29 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; -- 2.7.4