mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 18:48:44 +00:00
ext/faad/gstfaad.c: Add debug category, remove Close() call that made it crash whenever reusing, renegotiating or any...
Original commit message from CVS: * ext/faad/gstfaad.c: (gst_faad_class_init), (gst_faad_setcaps): Add debug category, remove Close() call that made it crash whenever reusing, renegotiating or anything; Close() actually free()s the handle and should only be called on READY->NULL. * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header): Actually set caps on buffer (in addition to pad), also.
This commit is contained in:
parent
ee6172a676
commit
1d185d4127
2 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,12 @@
|
|||
2005-08-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* ext/faad/gstfaad.c: (gst_faad_class_init), (gst_faad_setcaps):
|
||||
Add debug category, remove Close() call that made it crash
|
||||
whenever reusing, renegotiating or anything; Close() actually
|
||||
free()s the handle and should only be called on READY->NULL.
|
||||
* gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header):
|
||||
Actually set caps on buffer (in addition to pad), also.
|
||||
|
||||
2005-08-10 Owen Fraser-Green <owen@discobabe.net>
|
||||
|
||||
* gst/realmedia/rmdemux.c (gst_rmdemux_sink_activate)
|
||||
|
|
|
@ -678,8 +678,9 @@ gst_qtdemux_loop_header (GstPad * pad)
|
|||
/* ? */
|
||||
qtdemux->need_flush = FALSE;
|
||||
}
|
||||
GST_DEBUG ("Pushing buf with time=%" GST_TIME_FORMAT "\n",
|
||||
GST_DEBUG ("Pushing buf with time=%" GST_TIME_FORMAT,
|
||||
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf)));
|
||||
gst_buffer_set_caps (buf, stream->caps);
|
||||
gst_pad_push (stream->pad, buf);
|
||||
|
||||
GST_INFO ("pushing buffer on %" GST_PTR_FORMAT, stream->pad);
|
||||
|
|
Loading…
Reference in a new issue