From: Carl Hetherington Date: Sat, 9 Jun 2018 22:57:00 +0000 (+0100) Subject: Fix bad parsing of ASS lines embedded into FFmpeg files and containing commas. X-Git-Tag: v2.13.29~1 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=f3db6f37c85352ad7631078907439ce8ff151b3d Fix bad parsing of ASS lines embedded into FFmpeg files and containing commas. --- diff --git a/ChangeLog b/ChangeLog index 85b0f21a9..7f4c185f2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,11 @@ 2018-06-09 Carl Hetherington + * Fix bad parsing of ASS lines embedded into FFmpeg files + and containing commas. + * Add option to open a DCP in the player (#1312). -a2018-06-08 Carl Hetherington +2018-06-08 Carl Hetherington * Add support for rotation and flipping of video sources, and auto-detect when this is necessary (#966). diff --git a/src/lib/ffmpeg_decoder.cc b/src/lib/ffmpeg_decoder.cc index 6a8f4d413..0746458e5 100644 --- a/src/lib/ffmpeg_decoder.cc +++ b/src/lib/ffmpeg_decoder.cc @@ -679,16 +679,24 @@ FFmpegDecoder::decode_ass_subtitle (string ass, ContentTime from) produces a single format of Dialogue: lines... */ - vector bits; - split (bits, ass, is_any_of (",")); - if (bits.size() < 10) { + int commas = 0; + string text; + for (size_t i = 0; i < ass.length(); ++i) { + if (commas < 9 && ass[i] == ',') { + ++commas; + } else if (commas == 9) { + text += ass[i]; + } + } + + if (text.empty ()) { return; } sub::RawSubtitle base; list raw = sub::SSAReader::parse_line ( base, - bits[9], + text, _ffmpeg_content->video->size().width, _ffmpeg_content->video->size().height );