Commit fd49cf22 authored by Laurent Aimar's avatar Laurent Aimar

Fixed output format of audio format.c convertor.

It closes #3620.
parent b4508088
......@@ -146,7 +146,7 @@ static int Open(vlc_object_t *object)
end:
dst->audio = src->audio;
dst->audio.i_format = dst->i_codec;
dst->audio.i_bitspersample = aout_BitsPerSample(dst->i_codec);
aout_FormatPrepare(&dst->audio);
msg_Dbg(filter, "%4.4s->%4.4s, bits per sample: %i->%i",
(char *)&src->i_codec, (char *)&dst->i_codec,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment