diff options
author | David Schleef <ds@schleef.org> | 2004-05-14 19:26:35 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2004-05-14 19:26:35 +0000 |
commit | f841a107f6e27bb13bb917035a315b2c04c70a10 (patch) | |
tree | d2594f6a33d9e3a8a1c0e6c6044c2f37e9f5ca3e | |
parent | a89422346485b0135c7f4a45853dede1f0b3eb0f (diff) | |
download | gst-plugins-bad-f841a107f6e27bb13bb917035a315b2c04c70a10.tar.gz gst-plugins-bad-f841a107f6e27bb13bb917035a315b2c04c70a10.tar.bz2 gst-plugins-bad-f841a107f6e27bb13bb917035a315b2c04c70a10.zip |
ext/esd/esdsink.c: Fix crash when ESD is killed while we're playing.
Original commit message from CVS:
* ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
is killed while we're playing.
* gst/qtdemux/qtdemux.c: (qtdemux_parse): call
gst_element_no_more_pads().
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | gst/qtdemux/qtdemux.c | 1 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,10 @@ +2004-05-14 David Schleef <ds@schleef.org> + + * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD + is killed while we're playing. + * gst/qtdemux/qtdemux.c: (qtdemux_parse): call + gst_element_no_more_pads(). + 2004-05-14 Stephane Loeuillet <stephane.loeuillet@tiscali.fr> * gst-libs/gst/riff/riff-read.c : diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index e76c13fe..4afdf0cf 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -1722,6 +1722,7 @@ qtdemux_parse_tree (GstQTDemux * qtdemux) while ((trak = qtdemux_tree_get_sibling_by_type (trak, FOURCC_trak)) != NULL) qtdemux_parse_trak (qtdemux, trak); + gst_element_no_more_pads (GST_ELEMENT (qtdemux)); } static void |