summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/export_handler.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-09-17 18:20:37 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-09-17 18:20:37 +0000
commitede4ecbb00ecc866c502454c81e711baea780ccd (patch)
treed4a05e59cc96651ddf0eeab929f58fb7a7019fb0 /libs/ardour/ardour/export_handler.h
parent10bdce85a0e7381d1b5db38e3640600c6fd3ec79 (diff)
megaopus patch #2 for today: remove nframes64_t and sframes_t from source
git-svn-id: svn://localhost/ardour2/branches/3.0@7792 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/export_handler.h')
-rw-r--r--libs/ardour/ardour/export_handler.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libs/ardour/ardour/export_handler.h b/libs/ardour/ardour/export_handler.h
index 49400a9363..f826e09bf5 100644
--- a/libs/ardour/ardour/export_handler.h
+++ b/libs/ardour/ardour/export_handler.h
@@ -141,7 +141,7 @@ class ExportHandler : public ExportElementFactory
TimespanBounds timespan_bounds;
PBD::ScopedConnection process_connection;
- sframes_t process_position;
+ framepos_t process_position;
/* CD Marker stuff */
@@ -161,13 +161,13 @@ class ExportHandler : public ExportElementFactory
/* Track info */
uint32_t track_number;
- sframes_t track_position;
- sframes_t track_duration;
- sframes_t track_start_frame;
+ framepos_t track_position;
+ framepos_t track_duration;
+ framepos_t track_start_frame;
/* Index info */
uint32_t index_number;
- sframes_t index_position;
+ framepos_t index_position;
};
@@ -182,7 +182,7 @@ class ExportHandler : public ExportElementFactory
void write_index_info_cue (CDMarkerStatus & status);
void write_index_info_toc (CDMarkerStatus & status);
- void frames_to_cd_frames_string (char* buf, sframes_t when);
+ void frames_to_cd_frames_string (char* buf, framepos_t when);
int cue_tracknum;
int cue_indexnum;