filter/AutoConvert: modify child_audio_format, not in_audio_format
This prevented using the "volume_normalization" feature with some codecs (e.g. mp3), because the normalization code requires 16 bit samples. If the codec happens to deliver formats other than S16, the AutoConvert filter succeeds to initialize the conversion filter, but the returned input audio format was wrong.
This commit is contained in:
parent
bf2c1f3e9e
commit
2ce3900071
2
NEWS
2
NEWS
|
@ -1,4 +1,6 @@
|
|||
ver 0.18.1 (2013/11/??)
|
||||
* filter:
|
||||
- autoconvert: fix "volume_normalization" with mp3 files
|
||||
|
||||
ver 0.18 (2013/10/31)
|
||||
* configuration:
|
||||
|
|
|
@ -60,8 +60,8 @@ AutoConvertFilter::Open(AudioFormat &in_audio_format, Error &error)
|
|||
|
||||
/* open the "real" filter */
|
||||
|
||||
const AudioFormat child_audio_format = in_audio_format;
|
||||
AudioFormat out_audio_format = filter->Open(in_audio_format, error);
|
||||
AudioFormat child_audio_format = in_audio_format;
|
||||
AudioFormat out_audio_format = filter->Open(child_audio_format, error);
|
||||
if (!out_audio_format.IsDefined())
|
||||
return out_audio_format;
|
||||
|
||||
|
|
Loading…
Reference in New Issue