summaryrefslogtreecommitdiff
path: root/libavformat/matroska.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-04-16 03:39:05 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-04-20 21:24:18 +0200
commit67e957b43a2fdc197018968b0adc2f6a9c04e961 (patch)
treeee9f557623a9aa33f3f0683e1983fe6a265a1073 /libavformat/matroska.c
parent3589b3f2e217e78d16a92b372d95ce4a3f7df896 (diff)
downloadffmpeg-67e957b43a2fdc197018968b0adc2f6a9c04e961.tar.gz
avformat/matroska: Move mime_tag lists to matroskadec
They are not used any more by the muxer. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat/matroska.c')
-rw-r--r--libavformat/matroska.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/libavformat/matroska.c b/libavformat/matroska.c
index 4d18d147fc..7c56aba403 100644
--- a/libavformat/matroska.c
+++ b/libavformat/matroska.c
@@ -119,25 +119,6 @@ const CodecTags ff_webm_codec_tags[] = {
{"" , AV_CODEC_ID_NONE}
};
-const CodecMime ff_mkv_image_mime_tags[] = {
- {"image/gif" , AV_CODEC_ID_GIF},
- {"image/jpeg" , AV_CODEC_ID_MJPEG},
- {"image/png" , AV_CODEC_ID_PNG},
- {"image/tiff" , AV_CODEC_ID_TIFF},
-
- {"" , AV_CODEC_ID_NONE}
-};
-
-const CodecMime ff_mkv_mime_tags[] = {
- {"text/plain" , AV_CODEC_ID_TEXT},
- {"application/x-truetype-font", AV_CODEC_ID_TTF},
- {"application/x-font" , AV_CODEC_ID_TTF},
- {"application/vnd.ms-opentype", AV_CODEC_ID_OTF},
- {"binary" , AV_CODEC_ID_BIN_DATA},
-
- {"" , AV_CODEC_ID_NONE}
-};
-
const AVMetadataConv ff_mkv_metadata_conv[] = {
{ "LEAD_PERFORMER", "performer" },
{ "PART_NUMBER" , "track" },