Skip to content

Commit

Permalink
Set AV1 cpu-used default value to 4
Browse files Browse the repository at this point in the history
  • Loading branch information
rzumer committed Sep 25, 2018
1 parent 14376fc commit 0de0b88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ QStringList MainWindow::generatePass(int passNumber) const
{
passStringList << "-c:v" << "libaom-av1";
passStringList << "-strict" << "experimental";
passStringList << "-cpu-used" << QString::number(2);
passStringList << "-cpu-used" << QString::number(4);
}
else if(videoCodec == OutputFile::VP9)
passStringList << "-c:v" << "libvpx-vp9";
Expand Down

0 comments on commit 0de0b88

Please sign in to comment.