diff --git a/libs/ardour/ardour/playlist.h b/libs/ardour/ardour/playlist.h index 9ad40e6eb9..a8be02a0b9 100644 --- a/libs/ardour/ardour/playlist.h +++ b/libs/ardour/ardour/playlist.h @@ -290,7 +290,6 @@ public: bool _frozen; uint32_t subcnt; PBD::ID _orig_track_id; - framecnt_t freeze_length; bool auto_partition; uint32_t _combine_ops; diff --git a/libs/ardour/playlist.cc b/libs/ardour/playlist.cc index e5240747aa..a6925e444c 100644 --- a/libs/ardour/playlist.cc +++ b/libs/ardour/playlist.cc @@ -189,7 +189,6 @@ Playlist::Playlist (boost::shared_ptr other, string namestr, boo _frozen = other->_frozen; layer_op_counter = other->layer_op_counter; - freeze_length = other->freeze_length; } Playlist::Playlist (boost::shared_ptr other, framepos_t start, framecnt_t cnt, string str, bool hide) @@ -320,7 +319,6 @@ Playlist::init (bool hide) subcnt = 0; _frozen = false; layer_op_counter = 0; - freeze_length = 0; _combine_ops = 0; _relayer_suspended = false; @@ -433,7 +431,6 @@ void Playlist::delay_notifications () { g_atomic_int_inc (&block_notifications); - freeze_length = _get_extent().second; } /** @param from_undo true if this release is triggered by the end of an undo on this playlist */