summaryrefslogtreecommitdiff
path: root/src/lib/decoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-10-20 18:39:15 +0100
committerCarl Hetherington <cth@carlh.net>2012-10-20 20:05:26 +0100
commite9ca66f0d8897739cdef22f5011e0866f5a3f741 (patch)
treefacd02deef05a75094efec59b7d04f26786d1599 /src/lib/decoder.h
parent068f8fe319aad390788bdea24ad21ef758d6dd03 (diff)
Clean up audio passing round a bit.
Diffstat (limited to 'src/lib/decoder.h')
-rw-r--r--src/lib/decoder.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/lib/decoder.h b/src/lib/decoder.h
index 14e602ace..85b256f5b 100644
--- a/src/lib/decoder.h
+++ b/src/lib/decoder.h
@@ -99,11 +99,8 @@ public:
*/
sigc::signal<void, boost::shared_ptr<Image>, int, boost::shared_ptr<Subtitle> > Video;
- /** Emitted when some audio data is ready.
- * First parameter is an array of pointers to deinterleaved, floating point sample data for each channel.
- * Second parameter is the size of the data in frames (ie samples on each channel).
- */
- sigc::signal<void, float**, int> Audio;
+ /** Emitted when some audio data is ready */
+ sigc::signal<void, boost::shared_ptr<AudioBuffers> > Audio;
protected:
/** perform a single pass at our content */