diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-05-25 11:14:14 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-05-28 07:47:15 +0200 |
commit | d6b9ce99ea384fb676561461768b8316725a4ccd (patch) | |
tree | d46d7f3238622f48f20ce392f08a1e4a60975ca4 | |
parent | f13ffb6636fdecb5e3e0ddcff48f096e7b3db362 (diff) | |
download | ffmpeg-d6b9ce99ea384fb676561461768b8316725a4ccd.tar.gz |
flac demuxer: parse the WAVEFORMATEXTENSIBLE_CHANNEL_MASK tag
It is used to store the channel mask for non-standard layouts.
-rw-r--r-- | libavformat/flacdec.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libavformat/flacdec.c b/libavformat/flacdec.c index 11360a9da1..d02d8b5ecd 100644 --- a/libavformat/flacdec.c +++ b/libavformat/flacdec.c @@ -139,9 +139,24 @@ static int flac_read_header(AVFormatContext *s) } /* process supported blocks other than STREAMINFO */ if (metadata_type == FLAC_METADATA_TYPE_VORBIS_COMMENT) { + AVDictionaryEntry *chmask; + if (ff_vorbis_comment(s, &s->metadata, buffer, metadata_size)) { av_log(s, AV_LOG_WARNING, "error parsing VorbisComment metadata\n"); } + + /* parse the channels mask if present */ + chmask = av_dict_get(s->metadata, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", NULL, 0); + if (chmask) { + uint64_t mask = strtol(chmask->value, NULL, 0); + if (!mask || mask & ~0x3ffffULL) { + av_log(s, AV_LOG_WARNING, + "Invalid value of WAVEFORMATEXTENSIBLE_CHANNEL_MASK\n"); + } else { + st->codec->channel_layout = mask; + av_dict_set(&s->metadata, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", NULL, 0); + } + } } av_freep(&buffer); } |