diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-10-20 18:39:15 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-10-20 20:05:26 +0100 |
| commit | e9ca66f0d8897739cdef22f5011e0866f5a3f741 (patch) | |
| tree | facd02deef05a75094efec59b7d04f26786d1599 /src/lib/decoder.h | |
| parent | 068f8fe319aad390788bdea24ad21ef758d6dd03 (diff) | |
Clean up audio passing round a bit.
Diffstat (limited to 'src/lib/decoder.h')
| -rw-r--r-- | src/lib/decoder.h | 7 |
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 */ |
