diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-09-11 22:29:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-09-11 22:29:28 +0100 |
| commit | b9842263a402b5ce1d2f85a1346ca11a419f816e (patch) | |
| tree | a7d143006ec15cd216f7df5d448b1b28b7ef9ad7 /src/lib/upmixer_a.h | |
| parent | 9a2dca23967ff404dab1a36ec3fb9075d5e8e66e (diff) | |
Fix assertion failure when processors return fewer channels than the DCP has.
Diffstat (limited to 'src/lib/upmixer_a.h')
| -rw-r--r-- | src/lib/upmixer_a.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/upmixer_a.h b/src/lib/upmixer_a.h index 389d52d25..a25c3a329 100644 --- a/src/lib/upmixer_a.h +++ b/src/lib/upmixer_a.h @@ -37,7 +37,7 @@ public: ChannelCount in_channels () const; int out_channels () const; boost::shared_ptr<AudioProcessor> clone (int) const; - boost::shared_ptr<AudioBuffers> run (boost::shared_ptr<const AudioBuffers>); + boost::shared_ptr<AudioBuffers> run (boost::shared_ptr<const AudioBuffers>, int channels); void flush (); void make_audio_mapping_default (AudioMapping& mapping) const; std::vector<std::string> input_names () const; |
