Commit 95ca135e authored by cehoyos's avatar cehoyos

Make function get_channel_name() static: It is only used in audioconvert.c.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22114 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 237d53f1
......@@ -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