fixed faulty while loop break

This commit is contained in:
itsmattkc
2020-02-27 18:15:55 +11:00
parent fde5e47901
commit adcab06d4e
+3 -3
View File
@@ -392,10 +392,10 @@ FramePtr FFmpegDecoder::RetrieveVideo(const rational &timecode, const int &divid
// We found the frame we want // We found the frame we want
return_frame = working_frame_converted; return_frame = working_frame_converted;
} }
}
if (return_frame) { if (return_frame) {
break; break;
}
} }
} }