diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-05-26 12:48:56 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-05-28 07:50:32 +0200 |
commit | 23f741f79327e31be7b2a75ebb2e02111e06e52f (patch) | |
tree | 7b8620d9fe6c673a180f547f461eb6d3fa4cf517 /libavformat/oggdec.h | |
parent | 4efdadc8ec50332c812e8a95e8c67f5a260e7cb0 (diff) | |
download | ffmpeg-23f741f79327e31be7b2a75ebb2e02111e06e52f.tar.gz |
matroskadec: parse the channel layout mask for FLAC
It is commonly stored in a vorbiscomment block in codec private data.
Diffstat (limited to 'libavformat/oggdec.h')
-rw-r--r-- | libavformat/oggdec.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/oggdec.h b/libavformat/oggdec.h index 918378d2ea..893c3306c7 100644 --- a/libavformat/oggdec.h +++ b/libavformat/oggdec.h @@ -122,7 +122,8 @@ extern const struct ogg_codec ff_speex_codec; extern const struct ogg_codec ff_theora_codec; extern const struct ogg_codec ff_vorbis_codec; -int ff_vorbis_comment(AVFormatContext *ms, AVDictionary **m, const uint8_t *buf, int size); +int ff_vorbis_comment(AVFormatContext *ms, AVDictionary **m, + const uint8_t *buf, int size, int parse_picture); static inline int ogg_find_stream (struct ogg * ogg, int serial) |