diff --git a/src/input/input_mp4.cpp b/src/input/input_mp4.cpp index ec61da3a..b8e2011a 100644 --- a/src/input/input_mp4.cpp +++ b/src/input/input_mp4.cpp @@ -585,8 +585,7 @@ namespace Mist { curPositions.erase(curPositions.begin()); bool isKeyframe = false; - if(nextKeyframe[curPart.trackID] < myMeta.tracks[curPart.trackID].keys.size()){//should almost always be true, simple check to make sure we are not checking outside the keyframe array table - ///\todo These 2 ifs are practically the same check, merge these when we are busy cleaning up the code. + if(nextKeyframe[curPart.trackID] < myMeta.tracks[curPart.trackID].keys.size()){ //checking if this is a keyframe if (myMeta.tracks[curPart.trackID].type == "video" && (long long int) curPart.time == myMeta.tracks[curPart.trackID].keys[(nextKeyframe[curPart.trackID])].getTime()){ isKeyframe = true;