summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorSampo Savolainen <v2@iki.fi>2007-04-15 20:47:21 +0000
committerSampo Savolainen <v2@iki.fi>2007-04-15 20:47:21 +0000
commitfbdd0ab815e7829db93bc27f8c6e508b7da94921 (patch)
tree06aab11aadecdf01e29070ca5166e882ec134e29 /libs/ardour
parent0e8e5ddd90a38f58328edf1cf07613917f406300 (diff)
Added the session resampler which now should work for 2.0 sessions and
almost work for 0.99 originated session (automation is not handled yet). Stopped the creation on the automation/ directory in new sessions as it's not used anymore git-svn-id: svn://localhost/ardour2/trunk@1725 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/session_state.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index 119d2c858d..d3bf70a2dd 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -487,13 +487,6 @@ Session::create (bool& new_session, string* mix_template, nframes_t initial_leng
return -1;
}
- dir = automation_dir ();
-
- if (g_mkdir_with_parents (dir.c_str(), 0755) < 0) {
- error << string_compose(_("Session: cannot create session automation dir \"%1\" (%2)"), dir, strerror (errno)) << endmsg;
- return -1;
- }
-
dir = export_dir ();
if (g_mkdir_with_parents (dir.c_str(), 0755) < 0) {