Fixed filtering of unsupported data tracks in MP4
This commit is contained in:
parent
07a0a3df2d
commit
c19732a6ae
1 changed files with 3 additions and 1 deletions
|
@ -253,7 +253,9 @@ namespace Mist {
|
|||
myMeta.tracks[trackNo].lang = mdhdBox.getLanguage();
|
||||
|
||||
std::string hdlrType = mdiaBox.getChild<MP4::HDLR>().getHandlerType();
|
||||
if (hdlrType != "vide" && hdlrType != "soun" && hdlrType != "stbl"){
|
||||
if (hdlrType != "vide" && hdlrType != "soun" && hdlrType != "sbtl"){
|
||||
headerData.erase(trackNo);
|
||||
myMeta.tracks.erase(trackNo);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue