[Gstreamer-bugs] [Bug 144624] New: - wavenc doesn't close file properly
bugzilla-daemon at bugzilla.gnome.org
bugzilla-daemon at bugzilla.gnome.org
Fri Jun 18 13:18:02 PDT 2004
http://bugzilla.gnome.org/show_bug.cgi?id=144624
GStreamer | gst-plugins | Ver: 0.8.2
Summary: wavenc doesn't close file properly
Product: GStreamer
Version: 0.8.2
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: Normal
Component: gst-plugins
AssignedTo: gstreamer-maint at bugzilla.gnome.org
ReportedBy: sc5 at hermes.usherb.ca
QAContact: gstreamer-maint at bugzilla.gnome.org
When the wavenc stops, it seeks to the beginning of the file to update the
headers using
event = gst_event_new_seek (GST_FORMAT_BYTES | GST_SEEK_METHOD_SET, 0);
gst_pad_send_event (GST_PAD_PEER (wavenc->srcpad), event);
It don't know why but this doesn't seek to the beginning. It can be fixed by
using
event = gst_event_new_seek (GST_FORMAT_BYTES | GST_SEEK_METHOD_SET, 0);
gst_pad_push(wavenc->srcpad, GST_DATA(event));
I'm not sure if the bug is in gst_pad_send_event() or wavparse.
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
You are the QA contact for the bug, or are watching the QA contact.
More information about the Gstreamer-bugs
mailing list