Commit 4089fc27 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

live: add audio/L24

This requires a bleeding edge liblive555 - not tested.
parent 45dbc540
......@@ -849,6 +849,11 @@ static int SessionsSetup( demux_t *p_demux )
tk->fmt.i_codec = VLC_CODEC_S16B;
tk->fmt.audio.i_bitspersample = 16;
}
else if( !strcmp( sub-codecName(), "L24" ) )
{
tk->fmt.i_codec = VLC_CODEC_S24B;
tk->fmt.audio.i_bitspersample = 24;
}
else if( !strcmp( sub->codecName(), "L8" ) )
{
tk->fmt.i_codec = VLC_CODEC_U8;
......
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