Fixed support for VoD assets with a > 8MiB header size

This commit is contained in:
Thulinma 2016-07-26 13:57:24 +02:00
parent 6816b6074c
commit 7afd3415b3
2 changed files with 7 additions and 2 deletions

View file

@ -1481,8 +1481,9 @@ namespace DTSC {
if (type == "") {
result << "metadata_" << trackID;
return result.str();
}else{
result << type << "_";
}
result << type << "_";
result << codec << "_";
if (type == "audio") {
result << channels << "ch_";