summaryrefslogtreecommitdiff
path: root/libs/ardour/session_ltc.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/session_ltc.cc')
-rw-r--r--libs/ardour/session_ltc.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/session_ltc.cc b/libs/ardour/session_ltc.cc
index 91e11c8a4c..8acb16dde3 100644
--- a/libs/ardour/session_ltc.cc
+++ b/libs/ardour/session_ltc.cc
@@ -64,6 +64,7 @@ using namespace Timecode;
void
Session::ltc_tx_initialize()
{
+ assert (!ltc_encoder && !ltc_enc_buf);
ltc_enc_tcformat = config.get_timecode_format();
ltc_tx_parse_offset();
@@ -93,11 +94,11 @@ void
Session::ltc_tx_cleanup()
{
DEBUG_TRACE (DEBUG::LTC, "LTC TX cleanup\n");
+ ltc_tx_connections.drop_connections ();
free(ltc_enc_buf);
ltc_enc_buf = NULL;
ltc_encoder_free(ltc_encoder);
ltc_encoder = NULL;
- ltc_tx_connections.drop_connections ();
}
void