mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-27 21:40:34 +00:00
partial support for vobsub in mp4, used by nero, unsupported-embedded-subs-2.mp4
Originally committed as revision 7032 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9eb88fdeba
commit
8cb976931a
@ -414,6 +414,10 @@ static int mov_read_hdlr(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
|
||||
st->codec->codec_type = CODEC_TYPE_AUDIO;
|
||||
else if(type == MKTAG('m', '1', 'a', ' '))
|
||||
st->codec->codec_id = CODEC_ID_MP2;
|
||||
else if(type == MKTAG('s', 'u', 'b', 'p')) {
|
||||
st->codec->codec_type = CODEC_TYPE_SUBTITLE;
|
||||
st->codec->codec_id = CODEC_ID_DVD_SUBTITLE;
|
||||
}
|
||||
get_be32(pb); /* component manufacture */
|
||||
get_be32(pb); /* component flags */
|
||||
get_be32(pb); /* component flags mask */
|
||||
|
Loading…
Reference in New Issue
Block a user