From 26745bb1327e92c3838ba018a5399331db004817 Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Tue, 27 Sep 2005 15:12:45 +0000 Subject: sys/oss/gstosssink.c: Fix playback of mono streams (bytes_per_sample should be set from the sample width and the numb... Original commit message from CVS: * sys/oss/gstosssink.c: (gst_oss_sink_prepare): Fix playback of mono streams (bytes_per_sample should be set from the sample width and the number of channels negotiated, and not just be set to 4) (#317338) --- sys/oss/gstosssink.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'sys/oss') diff --git a/sys/oss/gstosssink.c b/sys/oss/gstosssink.c index a98efab1..92dd0ecd 100644 --- a/sys/oss/gstosssink.c +++ b/sys/oss/gstosssink.c @@ -325,8 +325,12 @@ gst_oss_sink_prepare (GstAudioSink * asink, GstRingBufferSpec * spec) spec->segsize = info.fragsize; spec->segtotal = info.fragstotal; - spec->bytes_per_sample = 4; - oss->bytes_per_sample = 4; + + if (spec->width != 16 && spec->width != 8) + goto dodgy_width; + + spec->bytes_per_sample = (spec->width / 8) * spec->channels; + oss->bytes_per_sample = (spec->width / 8) * spec->channels; memset (spec->silence_sample, 0, spec->bytes_per_sample); GST_DEBUG ("got segsize: %d, segtotal: %d, value: %08x", spec->segsize, @@ -339,6 +343,11 @@ wrong_format: GST_DEBUG ("wrong format %d\n", spec->format); return FALSE; } +dodgy_width: + { + GST_DEBUG ("unexpected width %d\n", spec->width); + return FALSE; + } } static gboolean -- cgit