grouped faders should have relative gain by default
[ardour.git] / libs / ardour / export_format_specification.cc
index 8b921519f71fd9ccf60ab44f4651d85f93f166db..d8a45ba533e47afe81cb8a2b2332347a4d2ce7d2 100644 (file)
@@ -170,7 +170,7 @@ ExportFormatSpecification::ExportFormatSpecification (Session & s)
        , _normalize_target (1.0)
        , _with_toc (false)
        , _with_cue (false)
-       , _upload (false)
+       , _soundcloud_upload (false)
        , _command ("")
 {
        format_ids.insert (F_None);
@@ -246,7 +246,6 @@ ExportFormatSpecification::get_state ()
        root->add_property ("id", _id.to_s());
        root->add_property ("with-cue", _with_cue ? "true" : "false");
        root->add_property ("with-toc", _with_toc ? "true" : "false");
-       root->add_property ("upload", _upload ? "true" : "false");
        root->add_property ("command", _command);
 
        node = root->add_child ("Encoding");
@@ -325,11 +324,6 @@ ExportFormatSpecification::set_state (const XMLNode & root)
                _with_toc = false;
        }
        
-       if ((prop = root.property ("upload"))) {
-               _upload = string_is_affirmative (prop->value());
-       } else {
-               _upload = false;
-       }
        
        if ((prop = root.property ("command"))) {
                _command = prop->value();
@@ -606,10 +600,6 @@ ExportFormatSpecification::description (bool include_name)
                components.push_back ("CUE");
        }
 
-       if (_upload) {
-               components.push_back ("Upload");
-       }
-
        if (!_command.empty()) {
                components.push_back ("+");
        }