Skip to content

Commit

Permalink
Fix encoding to file when using GPU processing.
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Sep 1, 2014
1 parent 77b5a22 commit 13e5b28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docks/encodedock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ void EncodeDock::on_encodeButton_clicked()
}
if (seekable)
// Batch encode
enqueueMelt(outputFilename, -MLT.realTime());
enqueueMelt(outputFilename, Settings.playerGPU()? -1 : -MLT.realTime());
else if (MLT.producer()->get_int("shotcut_bgcapture")) {
MLT.stop();
runMelt(outputFilename);
Expand Down

0 comments on commit 13e5b28

Please sign in to comment.