After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 144625 - wavenc doesn't close file properly
wavenc doesn't close file properly
Status: RESOLVED DUPLICATE of bug 144624
Product: GStreamer
Classification: Platform
Component: gst-plugins
0.8.2
Other Linux
: Normal normal
: NONE
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2004-06-18 20:35 UTC by Sebastien Cote
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Sebastien Cote 2004-06-18 20:35:39 UTC
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.
Comment 1 Benjamin Otte (Company) 2004-06-20 20:30:12 UTC

*** This bug has been marked as a duplicate of 144624 ***