Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RFC] DNxHD support #1857

Draft
wants to merge 16 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
hide dnxhd profile
dnxhd profile requires specific conditions to be met that need more attention put into it. and we can use dnxhr for most cases anyways.
  • Loading branch information
Quackdoc committed Feb 4, 2022
commit 096193ae1fea9042d57b5114ac6f48195e872c02
4 changes: 2 additions & 2 deletions app/dialog/export/codec/dnxhdsection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ DNxHDSection::DNxHDSection(QWidget *parent) :
*
*/

preset_combobox_->addItem(tr("dnxhd"));
//preset_combobox_->addItem(tr("dnxhd"));
preset_combobox_->addItem(tr("dnxhr_lb"));
preset_combobox_->addItem(tr("dnxhr_sq"));
preset_combobox_->addItem(tr("dnxhr_hq"));
Expand All @@ -60,7 +60,7 @@ DNxHDSection::DNxHDSection(QWidget *parent) :

void DNxHDSection::AddOpts(EncodingParams *params)
{
params->set_video_option(QStringLiteral("profile"), QString::number(preset_combobox_->currentIndex()));
params->set_video_option(QStringLiteral("profile"), QString::number(preset_combobox_->currentIndex() + 1));
}

}