diff options
author | Clément Bœsch <u@pkh.me> | 2016-03-07 21:47:47 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2016-03-07 21:48:55 +0100 |
commit | 2b7a61cbd8ae134f839c4347a4c289e1e11475a3 (patch) | |
tree | 2900b376b4abedb00eb1aec332425f388ae1f540 /libavcodec | |
parent | 8c24523cc52bacae2088f70bcb3d450bcc94e5e6 (diff) | |
download | ffmpeg-2b7a61cbd8ae134f839c4347a4c289e1e11475a3.tar.gz |
lavc/utils: fix extra ASS sanity check in convert_sub_to_old_ass_form()
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index bbb98046bb..c625bbcc3b 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -2486,7 +2486,7 @@ static int convert_sub_to_old_ass_form(AVSubtitle *sub, const AVPacket *pkt, AVR int ts_start, ts_duration = -1; long int layer; - if (rect->type != SUBTITLE_ASS || !strncmp(rect->ass, "Dialogue ", 10)) + if (rect->type != SUBTITLE_ASS || !strncmp(rect->ass, "Dialogue: ", 10)) continue; av_bprint_clear(&buf); |