From 0e0434e07e7bd1efa1a0afabe047cc1c46d00b61 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 27 Dec 2004 17:26:52 +0000 Subject: [PATCH] Use the text subtitle packetizer for known text subs formats. Otherwise concatenation won't work. --- src/input/r_matroska.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/r_matroska.cpp b/src/input/r_matroska.cpp index 12b761cc3..ce53cd831 100644 --- a/src/input/r_matroska.cpp +++ b/src/input/r_matroska.cpp @@ -1777,7 +1777,7 @@ kax_reader_c::create_packetizer(int64_t tid) { t->sub_type = 'v'; - } else if (!starts_with(t->codec_id, "S_TEXT", 6) || + } else if (starts_with(t->codec_id, "S_TEXT", 6) || (t->codec_id == "S_SSA") || (t->codec_id == "S_ASS")) { string new_codec_id;