From c302fb72554c74aa5ac65e200647985acef586db Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Mon, 12 Jan 2004 12:24:05 +0000 Subject: make oss warning more useful Original commit message from CVS: make oss warning more useful --- sys/oss/gstosselement.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'sys') diff --git a/sys/oss/gstosselement.c b/sys/oss/gstosselement.c index 48402cf5..4c1356ab 100644 --- a/sys/oss/gstosselement.c +++ b/sys/oss/gstosselement.c @@ -625,7 +625,12 @@ gst_osselement_sync_parms (GstOssElement *oss) target_channels != oss->channels || target_rate != oss->rate) { - g_warning ("couldn't set requested OSS parameters, enjoy the noise :)"); + if (target_channels != oss->channels) + g_warning ("couldn't set the right number of channels, enjoy the tone difference"); + if (target_rate != oss->rate) + g_warning ("couldn't set the right number of channels, enjoy the speed difference"); + if (target_format != oss->format) + g_warning ("couldn't set requested OSS parameters, enjoy the noise :)"); /* we could eventually return FALSE here, or just do some additional tests * to see that the frequencies don't differ too much etc.. */ } -- cgit