We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06ec0b6 commit d8f283cCopy full SHA for d8f283c
src/AvTranscoder/transcoder/Transcoder.cpp
@@ -289,6 +289,10 @@ ProcessStat Transcoder::process(IProgress& progress)
289
bool frameProcessed = true;
290
while(frameProcessed)
291
{
292
+ LOG_DEBUG("Process frame " << frame)
293
+ frameProcessed = processFrame();
294
+ ++frame;
295
+
296
const float progressDuration = getCurrentOutputDuration();
297
298
// check if JobStatusCancel
@@ -306,10 +310,6 @@ ProcessStat Transcoder::process(IProgress& progress)
306
310
<< progressDuration << "s) is equal or upper than " << expectedOutputDuration << "s.")
307
311
break;
308
312
}
309
-
- LOG_DEBUG("Process frame " << frame)
- frameProcessed = processFrame();
- ++frame;
313
314
315
_outputFile.endWrap();
0 commit comments