Skip to content

Commit

Permalink
vbr/cbrモードで、最大ビットレートの指定ができないままだったのを修正。
Browse files Browse the repository at this point in the history
  • Loading branch information
rigaya committed Feb 3, 2017
1 parent d76a7a8 commit 1eec86a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VCEEnc/frm/frmConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ System::Void frmConfig::InitStgFileList() {
System::Void frmConfig::fcgChangeEnabled(System::Object^ sender, System::EventArgs^ e) {
int vce_rc_method = list_vce_h264_rc_method[fcgCXEncMode->SelectedIndex].value;
bool cqp_mode = (vce_rc_method == 0);
bool cbr_vbr_mode = (vce_rc_method == 3 || vce_rc_method == 4);
bool cbr_vbr_mode = (vce_rc_method == 1 || vce_rc_method == 2);

this->SuspendLayout();

Expand Down

0 comments on commit 1eec86a

Please sign in to comment.