mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 08:14:58 +01:00
NO-OP: whitespace and comment
This commit is contained in:
parent
89d8dc26dd
commit
32b6db092c
1 changed files with 2 additions and 1 deletions
|
|
@ -429,11 +429,12 @@ ExportFormatDialog::load_state (FormatPtr spec)
|
||||||
|
|
||||||
for (Gtk::ListStore::Children::iterator it = format_list->children ().begin (); it != format_list->children ().end (); ++it) {
|
for (Gtk::ListStore::Children::iterator it = format_list->children ().begin (); it != format_list->children ().end (); ++it) {
|
||||||
boost::shared_ptr<ARDOUR::ExportFormat> format_in_list = it->get_value (format_cols.ptr);
|
boost::shared_ptr<ARDOUR::ExportFormat> format_in_list = it->get_value (format_cols.ptr);
|
||||||
|
/* see also ExportFormatManager::change_format_selection */
|
||||||
if (format_in_list->get_format_id () == spec->format_id () &&
|
if (format_in_list->get_format_id () == spec->format_id () &&
|
||||||
// BWF has the same format id with wav, so we need to check this.
|
// BWF has the same format id with wav, so we need to check this.
|
||||||
format_in_list->has_broadcast_info () == spec->has_broadcast_info () &&
|
format_in_list->has_broadcast_info () == spec->has_broadcast_info () &&
|
||||||
// Ogg can be Vorbis or OPUS
|
// Ogg can be Vorbis or OPUS
|
||||||
(format_in_list->get_format_id () != ExportFormatBase::F_Ogg || (spec->sample_format () == format_in_list->get_explicit_sample_format ()))
|
(format_in_list->get_format_id () != ExportFormatBase::F_Ogg || (spec->sample_format () == format_in_list->get_explicit_sample_format ()))
|
||||||
) {
|
) {
|
||||||
format_in_list->set_selected (true);
|
format_in_list->set_selected (true);
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue