[gstreamer-bugs] [Bug 571314] New: skewing audio sink results in zero input
GStreamer (bugzilla.gnome.org)
bugzilla-daemon at bugzilla.gnome.org
Wed Feb 11 06:35:24 PST 2009
If you have any questions why you received this email, please see the text at
the end of this email. Replies to this email are NOT read, please see the text
at the end of this email. You can add comments to this bug at:
http://bugzilla.gnome.org/show_bug.cgi?id=571314
GStreamer | gst-plugins-base | Ver: 0.10.21
Summary: skewing audio sink results in zero input
Product: GStreamer
Version: 0.10.21
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: Normal
Component: gst-plugins-base
AssignedTo: gstreamer-bugs at lists.sourceforge.net
ReportedBy: christopherwanderson at columbus.rr.com
QAContact: gstreamer-bugs at lists.sourceforge.net
GNOME version: 2.19/2.20
GNOME milestone: Unspecified
While doing a test input from usb microphone on webcam random noises eventually
arrise and then the audio will abrubtly stop and never picks up again.
GST_DEBUG=*:2
0:06:35.673672742 25015 0x827c610 WARN baseaudiosink
gstbaseaudiosink.c:914:gst_base_audio_sink_skew_slaving:<alsasink3> correct
clock skew 5810306 > 5804500
0:06:35.684449193 25015 0x827c610 WARN baseaudiosink
gstbaseaudiosink.c:938:gst_base_audio_sink_skew_slaving:<alsasink3> correct
clock skew -5846918 < -5804500
the first one always seems to appear first, then it will repeat this untill you
hit stop.
Simple fix
gst-plugins-base-0.10.21/gst-libs/gst/audio/gstbaseaudiosink.c
line 1325
if ((slaved = clock != sink->provided_clock)) {
changed to
slaved = (clock != sink->provided_clock);
slaved = FALSE;//BUGFIX
if (slaved) {
..has been working without any noise artifacts and without dropping out for 20+
mins now. It used to last 5 mins tops, with popping artifacts.
On FreeNode someone with latest version, 0.10.22, says he has the same skewing
problems and audio dropping out
--
See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received
this email, why you can't respond via email, how to stop receiving
emails (or reduce the number you receive), and how to contact someone
if you are having problems with the system.
You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=571314.
More information about the Gstreamer-bugs
mailing list