diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-10-20 15:40:46 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-10-20 15:40:46 +0100 |
| commit | 476af651fc34d7c6394fea0e39d351392b4e46d3 (patch) | |
| tree | 0dc0cef257733a52cc347197cb0ed08ae53fe4f4 /src/lib/encoder.h | |
| parent | a6976df179011056027a99ae210fb28117c36840 (diff) | |
Stuff.
Diffstat (limited to 'src/lib/encoder.h')
| -rw-r--r-- | src/lib/encoder.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/encoder.h b/src/lib/encoder.h index 02a2d7723..5dc0804c6 100644 --- a/src/lib/encoder.h +++ b/src/lib/encoder.h @@ -64,10 +64,10 @@ public: virtual void process_video (boost::shared_ptr<Image> i, int f, boost::shared_ptr<Subtitle> s) = 0; /** Called with some audio data. - * @param d Data. - * @param s Size of data (in bytes) + * @param d Array of pointers to floating point sample data for each channel. + * @param s Number of frames (ie number of samples in each channel) */ - virtual void process_audio (uint8_t* d, int s) = 0; + virtual void process_audio (float** d, int s) = 0; /** Called when a processing run has finished */ virtual void process_end () = 0; |
