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-06-03 23:09:16 +0400
committerNicolas George <nicolas.george@normalesup.org>2012-06-08 00:28:32 +0400
commite45a92dc88498473e7392d4bea3efcc8a74089f8 (patch)
treecfa0cf325a82defd20a80fd867f4ebf706fd369d /libavutil/audioconvert.h
parent7a2b429175d9252c3a156e8f6795d5c6b85f07f1 (diff)
audioconvert: implement av_bprint_channel_layout().
And reimplement av_get_channel_layout_string() on top of it.
Diffstat (limited to 'libavutil/audioconvert.h')
-rw-r--r--libavutil/audioconvert.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavutil/audioconvert.h b/libavutil/audioconvert.h
index f402b62f63..319cc8ab71 100644
--- a/libavutil/audioconvert.h
+++ b/libavutil/audioconvert.h
@@ -133,6 +133,12 @@ uint64_t av_get_channel_layout(const char *name);
*/
void av_get_channel_layout_string(char *buf, int buf_size, int nb_channels, uint64_t channel_layout);
+struct AVBPrint;
+/**
+ * Append a description of a channel layout to a bprint buffer.
+ */
+void av_bprint_channel_layout(struct AVBPrint *bp, int nb_channels, uint64_t channel_layout);
+
/**
* Return the number of channels in the channel layout.
*/