summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorS.N. Hemanth Meenakshisundaram <smeenaks@ucsd.edu>2010-08-26 00:38:25 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-26 00:38:25 +0000
commit5da19b53c6e16c6ff86ee9aab4f8d0b4b1c3be5d (patch)
treedcc8d039451539801d37ed5c0efb0c7f982372be
parentf06d6c751f708a6a145bbf87520e7f59140bbbb2 (diff)
Implement avcodec_get_channel_layout().
Patch by S.N. Hemanth Meenakshisundaram smeenaks:ucsd+edu. Originally committed as revision 24936 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/audioconvert.c12
-rw-r--r--libavcodec/audioconvert.h5
-rw-r--r--libavcodec/avcodec.h4
3 files changed, 19 insertions, 2 deletions
diff --git a/libavcodec/audioconvert.c b/libavcodec/audioconvert.c
index d022bc9ee3..c6dc1b1c2a 100644
--- a/libavcodec/audioconvert.c
+++ b/libavcodec/audioconvert.c
@@ -121,6 +121,18 @@ static const struct {
{ 0 }
};
+int64_t avcodec_get_channel_layout(const char *name)
+{
+ int i = 0;
+ do {
+ if (!strcmp(channel_layout_map[i].name, name))
+ return channel_layout_map[i].layout;
+ i++;
+ } while (channel_layout_map[i].name);
+
+ return 0;
+}
+
void avcodec_get_channel_layout_string(char *buf, int buf_size, int nb_channels, int64_t channel_layout)
{
int i;
diff --git a/libavcodec/audioconvert.h b/libavcodec/audioconvert.h
index 81b6cded39..1f93b5c336 100644
--- a/libavcodec/audioconvert.h
+++ b/libavcodec/audioconvert.h
@@ -60,6 +60,11 @@ enum SampleFormat avcodec_get_sample_fmt(const char* name);
const char *avcodec_get_channel_name(int channel_id);
/**
+ * @return channel layout that matches name, 0 if no match
+ */
+int64_t avcodec_get_channel_layout(const char *name);
+
+/**
* Return description of channel layout
*/
void avcodec_get_channel_layout_string(char *buf, int buf_size, int nb_channels, int64_t channel_layout);
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 042b5c9945..620f4ece24 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -30,8 +30,8 @@
#include "libavutil/avutil.h"
#define LIBAVCODEC_VERSION_MAJOR 52
-#define LIBAVCODEC_VERSION_MINOR 86
-#define LIBAVCODEC_VERSION_MICRO 1
+#define LIBAVCODEC_VERSION_MINOR 87
+#define LIBAVCODEC_VERSION_MICRO 0
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \