mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
avformat/movenc: fix if vs if else
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b8f5b0713e
commit
8a9d0a1561
@ -1590,7 +1590,7 @@ static int mov_write_hdlr_tag(AVIOContext *pb, MOVTrack *track)
|
||||
descr = "ClosedCaptionHandler";
|
||||
} else {
|
||||
if (track->tag == MKTAG('t','x','3','g')) hdlr_type = "sbtl";
|
||||
if (track->tag == MKTAG('m','p','4','s')) hdlr_type = "subp";
|
||||
else if (track->tag == MKTAG('m','p','4','s')) hdlr_type = "subp";
|
||||
else hdlr_type = "text";
|
||||
descr = "SubtitleHandler";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user