summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/session.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-02-19 22:10:27 +0000
committerDavid Robillard <d@drobilla.net>2008-02-19 22:10:27 +0000
commita2a6cc0404757f445bd753d69f34d8bc2c0e87a9 (patch)
tree5d42f3dc23fa38679de1946d76ff0aa98845bc39 /libs/ardour/ardour/session.h
parent4cbd7f0eabfb9221444776bc6ea2dfe3a53cf873 (diff)
Merge with 2.0-ongoing R3082.
Superficial generification of export stuff. git-svn-id: svn://localhost/ardour2/branches/3.0@3088 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/session.h')
-rw-r--r--libs/ardour/ardour/session.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h
index 10167ae5b3..bc77157e9f 100644
--- a/libs/ardour/ardour/session.h
+++ b/libs/ardour/ardour/session.h
@@ -109,7 +109,7 @@ class SMFSource;
class SessionDirectory;
-struct AudioExportSpecification;
+struct ExportSpecification;
struct RouteGroup;
using std::vector;
@@ -606,8 +606,8 @@ class Session : public PBD::StatefulDestructible
SlaveSource post_export_slave;
nframes_t post_export_position;
- int start_audio_export (ARDOUR::AudioExportSpecification&);
- int stop_audio_export (ARDOUR::AudioExportSpecification&);
+ int start_export (ARDOUR::ExportSpecification&);
+ int stop_export (ARDOUR::ExportSpecification&);
void finalize_audio_export ();
void add_source (boost::shared_ptr<Source>);
@@ -1037,7 +1037,7 @@ class Session : public PBD::StatefulDestructible
void process_without_events (nframes_t);
void process_with_events (nframes_t);
void process_audition (nframes_t);
- int process_export (nframes_t, ARDOUR::AudioExportSpecification*);
+ int process_export (nframes_t, ARDOUR::ExportSpecification*);
/* slave tracking */
@@ -1062,7 +1062,7 @@ class Session : public PBD::StatefulDestructible
void set_slave_source (SlaveSource);
bool _exporting;
- int prepare_to_export (ARDOUR::AudioExportSpecification&);
+ int prepare_to_export (ARDOUR::ExportSpecification&);
void prepare_diskstreams ();
void commit_diskstreams (nframes_t, bool& session_requires_butler);