[FFmpeg-cvslog] r22114 - trunk/libavcodec/audioconvert.c
cehoyos
subversion
Sun Feb 28 19:50:57 CET 2010
Author: cehoyos
Date: Sun Feb 28 19:50:56 2010
New Revision: 22114
Log:
Make function get_channel_name() static: It is only used in audioconvert.c.
Modified:
trunk/libavcodec/audioconvert.c
Modified: trunk/libavcodec/audioconvert.c
==============================================================================
--- trunk/libavcodec/audioconvert.c Sun Feb 28 19:37:09 2010 (r22113)
+++ trunk/libavcodec/audioconvert.c Sun Feb 28 19:50:56 2010 (r22114)
@@ -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;
More information about the ffmpeg-cvslog
mailing list