diff options
author | Paul Arzelier <paul.arzelier@free.fr> | 2017-01-28 17:25:27 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-01-28 23:08:42 +0100 |
commit | 65862f57ad2f7f49d715f334a9d892e0b20d42f1 (patch) | |
tree | bc7d703dd79cbf22da92d2492f412b2faa57fa2d /libavformat/internal.h | |
parent | dce863421b64d4d00c1384997b826ffe3c945620 (diff) | |
download | ffmpeg-65862f57ad2f7f49d715f334a9d892e0b20d42f1.tar.gz |
avformat: Ignore ID3v2 tags if other tags are present e.g. vorbis
Reviewed-by: wm4 <nfxjfg@googlemail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r-- | libavformat/internal.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index 9d614fb12c..63a1724cfa 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -140,6 +140,11 @@ struct AVFormatInternal { * Whether or not avformat_init_output fully initialized streams */ int streams_initialized; + + /** + * ID3v2 tag useful for MP3 demuxing + */ + AVDictionary *id3v2_meta; }; struct AVStreamInternal { |