Commit 024420d8 authored by Laurent Aimar's avatar Laurent Aimar

Set a non compressed format in aes3 decoder at open.

parent e2e26c97
......@@ -261,6 +261,9 @@ static int Open( decoder_t *p_dec, bool b_packetizer )
}
else
{
p_dec->fmt_out.i_codec = VLC_CODEC_S16N;
p_dec->fmt_out.audio.i_bitspersample = 16;
p_dec->pf_decode_audio = Decode;
p_dec->pf_packetize = NULL;
}
......
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