Commit 5dfa637c authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

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
parent 82f50f82
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment