diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-12-13 10:23:20 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-12-13 10:23:20 +0000 |
| commit | da19eaac0dd80afed3dd282d61ea3298196a5090 (patch) | |
| tree | 8b6caca26fc79aa943082965e7aac72ae6dcc521 /src/lib/audio_decoder.h | |
| parent | 097a1fb413bbbb89182161d4c1a31daa5419ec96 (diff) | |
Start of changing frame numbers to time.
Diffstat (limited to 'src/lib/audio_decoder.h')
| -rw-r--r-- | src/lib/audio_decoder.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/audio_decoder.h b/src/lib/audio_decoder.h index ab6c4b8a9..10e4298f7 100644 --- a/src/lib/audio_decoder.h +++ b/src/lib/audio_decoder.h @@ -41,13 +41,12 @@ public: bool has_audio () const; /** Emitted when some audio data is ready */ - boost::signals2::signal<void (boost::shared_ptr<const AudioBuffers>, AudioContent::Frame)> Audio; + boost::signals2::signal<void (boost::shared_ptr<const AudioBuffers>, ContentTime)> Audio; protected: - void audio (boost::shared_ptr<const AudioBuffers>, AudioContent::Frame); + void audio (boost::shared_ptr<const AudioBuffers>, ContentTime); boost::shared_ptr<const AudioContent> _audio_content; - AudioContent::Frame _audio_position; }; #endif |
