Disable selection of x265 in "add job" dialog for now. Will be re-enabled when it's actually supported.
This commit is contained in:
parent
e1c9f86520
commit
fce6ac31ff
@ -74,7 +74,8 @@ QString ENC_BINARY(const SysinfoModel *sysinfo, const OptionsModel *options)
|
||||
|
||||
QString AVS_BINARY(const SysinfoModel *sysinfo, const PreferencesModel *preferences)
|
||||
{
|
||||
return QString("%1/toolset/%2/avs2yuv_%2.exe").arg(sysinfo->getAppPath(), preferences->getUseAvisyth64Bit() ? "x64": "x86");
|
||||
const bool x64 = preferences->getUseAvisyth64Bit() && sysinfo->hasX64Support();
|
||||
return QString("%1/toolset/%2/avs2yuv_%2.exe").arg(sysinfo->getAppPath(), x64 ? "x64": "x86");
|
||||
}
|
||||
|
||||
QString VPS_BINARY(const SysinfoModel *sysinfo, const PreferencesModel *preferences)
|
||||
|
@ -460,6 +460,14 @@ void AddJobDialog::modeIndexChanged(int index)
|
||||
|
||||
void AddJobDialog::accept(void)
|
||||
{
|
||||
//FIXME
|
||||
if(ui->cbxEncoderType->currentIndex() == OptionsModel::EncType_X265)
|
||||
{
|
||||
QMessageBox::warning(this, tr("x265"), tr("Sorry, x265 support not implemented yet!"));
|
||||
ui->cbxEncoderType->setCurrentIndex(OptionsModel::EncType_X264);
|
||||
return;
|
||||
}
|
||||
|
||||
//Check 64-Bit support
|
||||
if((ui->cbxEncoderArch->currentIndex() == OptionsModel::EncArch_x64) && (!m_sysinfo->hasX64Support()))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user