X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fexport_format_manager.cc;h=e5d291a1b4b449f4af7d951f769625ec0a3105f7;hb=cf52d6e4b40111eb04b244ec054055a4ec15dbe0;hp=890623c114b0f5a562aa28705f3e225b58dd94ea;hpb=ee1b49f87e4b8e6406c059f29371892872d3fb85;p=ardour.git diff --git a/libs/ardour/export_format_manager.cc b/libs/ardour/export_format_manager.cc index 890623c114..e5d291a1b4 100644 --- a/libs/ardour/export_format_manager.cc +++ b/libs/ardour/export_format_manager.cc @@ -23,7 +23,7 @@ #include "ardour/export_format_specification.h" #include "ardour/export_format_compatibility.h" -#include "i18n.h" +#include "pbd/i18n.h" using std::string; @@ -293,6 +293,20 @@ ExportFormatManager::select_with_toc (bool value) check_for_description_change (); } +void +ExportFormatManager::select_with_mp4chaps (bool value) +{ + current_selection->set_with_mp4chaps (value); + check_for_description_change (); +} + +void +ExportFormatManager::set_command (std::string command) +{ + current_selection->set_command (command); + check_for_description_change (); +} + void ExportFormatManager::select_trim_beginning (bool value) { @@ -329,9 +343,30 @@ ExportFormatManager::select_normalize (bool value) } void -ExportFormatManager::select_normalize_target (float value) +ExportFormatManager::select_normalize_loudness (bool value) +{ + current_selection->set_normalize_loudness (value); + check_for_description_change (); +} + +void +ExportFormatManager::select_normalize_dbfs (float value) +{ + current_selection->set_normalize_dbfs (value); + check_for_description_change (); +} + +void +ExportFormatManager::select_normalize_lufs (float value) +{ + current_selection->set_normalize_lufs (value); + check_for_description_change (); +} + +void +ExportFormatManager::select_normalize_dbtp (float value) { - current_selection->set_normalize_target (value); + current_selection->set_normalize_dbtp (value); check_for_description_change (); }