[gstreamer-bugs] [Bug 345188] [alsa] can't handle more than 8 channels

GStreamer (bugzilla.gnome.org) bugzilla-daemon at bugzilla.gnome.org
Thu Jul 20 12:55:14 PDT 2006


Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=345188
 GStreamer | gst-plugins-base | Ver: HEAD CVS





------- Comment #16 from Stefan Kost (gstreamer, gtkdoc dev)  2006-07-20 19:55 UTC -------
I belive the problem is in gstalsa.c:caps_add_channel_configuration()

with
if (max_chans >= 3) {
...
}
...
for (c = 4; c <= 8; c += 2) {
...
}

it creates channel configs starting with channels=3, whereas
min_chans=max_chans=10 in my case. So it should rather be

if (max_chans >= 3 && min_chans<=3) {
...
}
...


-- 
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.




More information about the Gstreamer-bugs mailing list