]> git.sesse.net Git - ffmpeg/commitdiff
libavformat/movenc: mov: added subtitle codec tags to codec tag list
authorPaweł Wegner <pawel.wegner95@gmail.com>
Mon, 25 Feb 2019 10:50:43 +0000 (11:50 +0100)
committerJames Almer <jamrial@gmail.com>
Mon, 18 Mar 2019 22:15:35 +0000 (19:15 -0300)
This fixes avformat_query_codec incorrectly returning 0 for
mov container and mov_text subtitles.

Signed-off-by: Paweł Wegner <pawel.wegner95@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
libavformat/movenc.c

index 77943304b5a52b70aebf547d8351a3bd26d7caa9..8969d5b17080d0306c276afb0c9758b132deb91e 100644 (file)
@@ -6858,7 +6858,7 @@ AVOutputFormat ff_mov_muxer = {
     .deinit            = mov_free,
     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH | AVFMT_TS_NEGATIVE,
     .codec_tag         = (const AVCodecTag* const []){
-        ff_codec_movvideo_tags, ff_codec_movaudio_tags, 0
+        ff_codec_movvideo_tags, ff_codec_movaudio_tags, ff_codec_movsubtitle_tags, 0
     },
     .check_bitstream   = mov_check_bitstream,
     .priv_class        = &mov_muxer_class,