Merge branch 'development' into LTS_development

This commit is contained in:
Thulinma 2017-05-13 23:43:06 +02:00
commit 3cba6f011f
5 changed files with 78 additions and 18 deletions

View file

@ -504,6 +504,8 @@ namespace OGG {
tempGranule = (currentSegment.lastKeyFrameSeen << split) | currentSegment.framesSinceKeyFrame;
} else if (codec == OGG::VORBIS){
tempGranule = currentSegment.lastKeyFrameSeen;
} else if (codec == OGG::OPUS){
tempGranule = currentSegment.timeStamp*48;
}
return tempGranule;
}