take read-lock when saving processor order
[ardour.git] / libs / ardour / export_format_manager.cc
index c8bd0c0aa912b012eeda7fbdf2e1e70abcb7288a..65544122739c7f0e08dfafd6d2efc50fd8b5b62a 100644 (file)
@@ -294,12 +294,20 @@ ExportFormatManager::select_with_toc (bool value)
 }
 
 void
-ExportFormatManager::select_upload (bool value)
+ExportFormatManager::select_with_mp4chaps (bool value)
 {
-       current_selection->set_upload (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)
 {
        current_selection->set_trim_beginning (value);
@@ -335,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 ();
 }