Use the text subtitle packetizer for known text subs formats. Otherwise concatenation won't work.

This commit is contained in:
Moritz Bunkus 2004-12-27 17:26:52 +00:00
parent f2844bf0a3
commit 0e0434e07e

View File

@ -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;