From e2513e5415199fa6b0bbeaf06a8eb827debbbb0b Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Fri, 1 Oct 2004 11:44:22 +0000 Subject: sys/sunaudio/gstsunaudio.c: Solve #152805. Original commit message from CVS: Reviewed by: Ronald S. Bultje * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams): Solve #152805. * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute): Solve 152806. --- sys/sunaudio/gstsunmixer.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'sys/sunaudio/gstsunmixer.c') diff --git a/sys/sunaudio/gstsunmixer.c b/sys/sunaudio/gstsunmixer.c index f79b7725..6f0db25e 100644 --- a/sys/sunaudio/gstsunmixer.c +++ b/sys/sunaudio/gstsunmixer.c @@ -130,8 +130,7 @@ fill_labels (void) { gchar *given, *wanted; } - cases[] = - { + cases[] = { { "Vol ", N_("Volume")} , { @@ -279,13 +278,10 @@ gst_sunaudiomixer_set_mute (GstMixer * mixer, return; AUDIO_INITINFO (&audioinfo); - ioctl (sunaudio->mixer_fd, AUDIO_GETINFO, &audioinfo); if (mute) { - audioinfo.play.port = audioinfo.play.avail_ports; audioinfo.output_muted = 1; } else { - audioinfo.play.port = 0; audioinfo.output_muted = 0; } -- cgit v1.2.1