Skip to content

Commit

Permalink
edit-widget: add opus audio codec
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaspontoexe committed Feb 25, 2024
1 parent ded25a8 commit 352ebd8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/edit-widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,8 @@ class EditOutputWidgetImpl : public EditOutputWidget
aenc_->addItem(obs_module_text("SameAsOBS"), "");
for(auto x : EnumEncodersByCodec("aac"))
aenc_->addItem(ui_text(x).c_str(), x.c_str());
for(auto x : EnumEncodersByCodec("opus"))
aenc_->addItem(ui_text(x).c_str(), x.c_str());
}

void LoadFPSDenumerator()
Expand Down

0 comments on commit 352ebd8

Please sign in to comment.