# HG changeset patch # User reimar # Date 1201544966 0 # Node ID 7b82d835bed1026e2ae3ca68c67a617eb4d64528 # Parent 05cde5afd1d818b8cf318425ce32b9e25977b824 Support CODEC_ID_MOV_TEXT diff -r 05cde5afd1d8 -r 7b82d835bed1 libmpdemux/demux_lavf.c --- a/libmpdemux/demux_lavf.c Mon Jan 28 18:28:17 2008 +0000 +++ b/libmpdemux/demux_lavf.c Mon Jan 28 18:29:26 2008 +0000 @@ -411,6 +411,8 @@ /* only support text subtitles for now */ if(codec->codec_id == CODEC_ID_TEXT) type = 't'; + else if(codec->codec_id == CODEC_ID_MOV_TEXT) + type = 'm'; else if(codec->codec_id == CODEC_ID_SSA) type = 'a'; else if(codec->codec_id == CODEC_ID_DVD_SUBTITLE)