From e815d083429b1ff95912e296c972ef5f9ec2c8a4 Mon Sep 17 00:00:00 2001 From: Andoni Morales Alastruey Date: Tue, 8 May 2012 16:23:42 +0200 Subject: [PATCH] directsoundsink: force 48000 kHz force AC-3 over spdif --- sys/directsound/gstdirectsoundsink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/directsound/gstdirectsoundsink.c b/sys/directsound/gstdirectsoundsink.c index fae5fa0..df56c65 100644 --- a/sys/directsound/gstdirectsoundsink.c +++ b/sys/directsound/gstdirectsoundsink.c @@ -440,7 +440,7 @@ gst_directsound_sink_prepare (GstAudioSink * asink, wfx.cbSize = 0; wfx.wFormatTag = WAVE_FORMAT_DOLBY_AC3_SPDIF; wfx.nChannels = 2; - wfx.nSamplesPerSec = spec->info.rate; + wfx.nSamplesPerSec = 48000; wfx.wBitsPerSample = 16; wfx.nBlockAlign = wfx.wBitsPerSample / 8 * wfx.nChannels; wfx.nAvgBytesPerSec = wfx.nSamplesPerSec * wfx.nBlockAlign; -- 2.7.4