Bug 136930

Summary: [FC3] [PATCH] patch for hiding modems doesn't support > 1 soundcard
Product: [Fedora] Fedora Reporter: Ronald Bultje <rbultje>
Component: gnome-mediaAssignee: Colin Walters <walters>
Status: CLOSED CURRENTRELEASE QA Contact:
Severity: high Docs Contact:
Priority: medium    
Version: rawhide   
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: gnome-media-2.8.0-3.FC3.1 Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2004-11-08 19:54:53 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 123268, 136451    

Description Ronald Bultje 2004-10-23 12:29:43 UTC
gnome-media-2.8.0-gst-mixer-nomodem.patch in gnome-media 2.8.0-3 is
broken. It doesn't reset the element state if it found no tracks, and
thus therefore the next device in the list will not actually open
(since open is done between NULL and READY) and thus the next device
will not show up in the list.

+      if (!page)
+       continue;

Should change to:

+      if (!page) {
+        gst_element_set_state (element, GST_STATE_NULL);
+        continue;
+      }

Comment 1 Colin Walters 2004-10-25 20:43:33 UTC
Ok I built this fix into rawhide, trying to see if I can get it in FC3.

Comment 2 Colin Walters 2004-11-08 19:54:53 UTC
Pushed as FC3 update.