Commit 8a9d0a15 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/movenc: fix if vs if else

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b8f5b071
......@@ -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";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment