summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/session.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-12-01 20:49:32 +0000
committerCarl Hetherington <carl@carlh.net>2010-12-01 20:49:32 +0000
commit6c76a275e17cb648a0722039a2c77a7f05361e22 (patch)
treebb0bc06bb15b65719a36f4321ae8eadf3ce3aabe /libs/ardour/ardour/session.h
parenta5ea47ff0db48e9b5549f309eb6951138b063de4 (diff)
Remove some thought-to-be-useless volatile qualifiers.
git-svn-id: svn://localhost/ardour2/branches/3.0@8147 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/session.h')
-rw-r--r--libs/ardour/ardour/session.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h
index 5e3176d59b..a8daebabfb 100644
--- a/libs/ardour/ardour/session.h
+++ b/libs/ardour/ardour/session.h
@@ -844,21 +844,21 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
nframes_t _nominal_frame_rate; //ignores audioengine setting, "native" SR
int transport_sub_state;
mutable gint _record_status;
- volatile framepos_t _transport_frame;
+ framepos_t _transport_frame;
Location* _session_range_location; ///< session range, or 0 if there is nothing in the session yet
Slave* _slave;
bool _silent;
-
- // varispeed playback
- volatile double _transport_speed;
- double _last_transport_speed;
- double _target_transport_speed;
- CubicInterpolation interpolation;
+
+ // varispeed playback
+ double _transport_speed;
+ double _last_transport_speed;
+ double _target_transport_speed;
+ CubicInterpolation interpolation;
bool auto_play_legal;
- framepos_t _last_slave_transport_frame;
+ framepos_t _last_slave_transport_frame;
nframes_t maximum_output_latency;
- volatile framepos_t _requested_return_frame;
+ framepos_t _requested_return_frame;
nframes_t current_block_size;
nframes_t _worst_output_latency;
nframes_t _worst_input_latency;