Merge remote-tracking branch 'qatar/master'
* qatar/master: mov: Unbreak sbtl writing Conflicts: libavformat/movenc.c See: 8a9d0a1561470a185a3d09676fcf9b44830a4bfe Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
9d013fe840
@ -1589,9 +1589,13 @@ static int mov_write_hdlr_tag(AVIOContext *pb, MOVTrack *track)
|
||||
hdlr_type = "clcp";
|
||||
descr = "ClosedCaptionHandler";
|
||||
} else {
|
||||
if (track->tag == MKTAG('t','x','3','g')) hdlr_type = "sbtl";
|
||||
else if (track->tag == MKTAG('m','p','4','s')) hdlr_type = "subp";
|
||||
else hdlr_type = "text";
|
||||
if (track->tag == MKTAG('t','x','3','g')) {
|
||||
hdlr_type = "sbtl";
|
||||
} else if (track->tag == MKTAG('m','p','4','s')) {
|
||||
hdlr_type = "subp";
|
||||
} else {
|
||||
hdlr_type = "text";
|
||||
}
|
||||
descr = "SubtitleHandler";
|
||||
}
|
||||
} else if (track->enc->codec_tag == MKTAG('r','t','p',' ')) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user