summaryrefslogtreecommitdiff
path: root/src/lib/audio_stream.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-05-10 15:06:19 +0100
committerCarl Hetherington <cth@carlh.net>2016-05-18 11:50:29 +0100
commit3db1df492e1009ee28641cdc593a139df156e8d7 (patch)
tree7d86e74117a701515f381ee707d7699acab7b2dc /src/lib/audio_stream.h
parent4fe27489ad67267081d048b45a4df9ee37541fde (diff)
Store audio length in AudioStream.
Diffstat (limited to 'src/lib/audio_stream.h')
-rw-r--r--src/lib/audio_stream.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/lib/audio_stream.h b/src/lib/audio_stream.h
index 8d05df268..bf7b284f8 100644
--- a/src/lib/audio_stream.h
+++ b/src/lib/audio_stream.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2015-2016 Carl Hetherington <cth@carlh.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -21,6 +21,7 @@
#define DCPOMATIC_AUDIO_STREAM_H
#include "audio_mapping.h"
+#include "types.h"
#include <boost/thread/mutex.hpp>
struct audio_sampling_rate_test;
@@ -28,8 +29,8 @@ struct audio_sampling_rate_test;
class AudioStream
{
public:
- AudioStream (int frame_rate, int channels);
- AudioStream (int frame_rate, AudioMapping mapping);
+ AudioStream (int frame_rate, Frame length, int channels);
+ AudioStream (int frame_rate, Frame length, AudioMapping mapping);
virtual ~AudioStream () {}
void set_mapping (AudioMapping mapping);
@@ -44,6 +45,11 @@ public:
return _frame_rate;
}
+ Frame length () const {
+ boost::mutex::scoped_lock lm (_mutex);
+ return _length;
+ }
+
int channels () const;
protected:
@@ -54,6 +60,7 @@ private:
friend struct player_time_calculation_test3;
int _frame_rate;
+ Frame _length;
AudioMapping _mapping;
};