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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Arzelier <paul.arzelier@free.fr>2017-01-28 19:25:27 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2017-01-29 01:08:42 +0300
commit65862f57ad2f7f49d715f334a9d892e0b20d42f1 (patch)
treebc7d703dd79cbf22da92d2492f412b2faa57fa2d /libavformat/internal.h
parentdce863421b64d4d00c1384997b826ffe3c945620 (diff)
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.h5
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 {