Browse Source

audio_output: increase allowed max sample rate to 384 kHz

Fixes #21925

(cherry picked from commit 45bd86364e)
Signed-off-by: Tristan Matthews <tmatth@videolan.org>
pull/135/head
Tristan Matthews 7 years ago
parent
commit
e0ba0752e6
  1. 2
      src/audio_output/dec.c

2
src/audio_output/dec.c

@ -58,7 +58,7 @@ int aout_DecNew( audio_output_t *p_aout,
}
}
if( p_format->i_rate > 352800 )
if( p_format->i_rate > 384000 )
{
msg_Err( p_aout, "excessive audio sample frequency (%u)",
p_format->i_rate );

Loading…
Cancel
Save