Commit 8aebaee4 authored by Felix Paul Kühne's avatar Felix Paul Kühne

auhal: compilation fix

untested, since the affected code is part of the S/PDIF handling
parent 9cb64209
......@@ -781,7 +781,7 @@ static int OpenSPDIF( audio_output_t * p_aout )
p_aout->format.i_format = VLC_CODEC_SPDIFL;
p_aout->format.i_bytes_per_frame = AOUT_SPDIF_SIZE;
p_aout->format.i_frame_length = A52_FRAME_NB;
p_aout->format.i_nb_samples = p_aout->format.i_frame_length;
p_aout->i_nb_samples = p_aout->format.i_frame_length;
p_aout->format.i_rate = (unsigned int)p_sys->stream_format.mSampleRate;
aout_FormatPrepare( &p_aout->format );
aout_VolumeNoneInit( p_aout );
......
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