Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2012-07-30 02:33:38 +0400
committerNicolas George <nicolas.george@normalesup.org>2012-07-30 13:37:40 +0400
commit33449b1776169f18c96f485e37ab6ae42769621b (patch)
tree40b9ceb13bf64b2e2e19e42f68b581e2da683027 /libavutil/audioconvert.h
parentcc554704722c4fdcad5e6b3f1451721a8f17607e (diff)
audioconvert: add av_get_channel_description().
Diffstat (limited to 'libavutil/audioconvert.h')
-rw-r--r--libavutil/audioconvert.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libavutil/audioconvert.h b/libavutil/audioconvert.h
index 25e9cf025e..f1399b964c 100644
--- a/libavutil/audioconvert.h
+++ b/libavutil/audioconvert.h
@@ -181,6 +181,14 @@ uint64_t av_channel_layout_extract_channel(uint64_t channel_layout, int index);
const char *av_get_channel_name(uint64_t channel);
/**
+ * Get the description of a given channel.
+ *
+ * @param channel a channel layout with a single channel
+ * @return channel description on success, NULL on error
+ */
+const char *av_get_channel_description(uint64_t channel);
+
+/**
* @}
*/