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 169400 - decodebin finalization bug
decodebin finalization bug
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins
0.8.9
Other Linux
: Normal normal
: 0.8.9
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2005-03-06 16:40 UTC by Richard Hult
Modified: 2005-03-10 15:27 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
untested patch (691 bytes, patch)
2005-03-07 16:57 UTC, Ronald Bultje
none Details | Review

Description Richard Hult 2005-03-06 16:40:37 UTC
Create a pipeline with a decodebin, use it with an MP3 file and the when done,
unref the pipeline. The decodebin then tries to remove an element that is not a
direct child of it (in the remove_element_chain function).

The particular case I'm seeing is a id3demux element being removed from the bin,
when it is actually a child of another bin called id3demuxbin0.

The output is:

(process:5734): GStreamer-CRITICAL **: gst_bin_remove_func: assertion
`GST_ELEMENT_PARENT (element) == (GstObject *) bin' failed

Let me know if you need any more info.
Comment 1 Ronald Bultje 2005-03-07 16:36:01 UTC
Can you provide a backtrace on that warning (to see where it's triggered;
decodebin->finalize? bin-->finalize?? sth. else?)
Comment 2 Richard Hult 2005-03-07 16:41:51 UTC


  • #0 IA__g_log
    at gmessages.c line 511
  • #1 IA__g_return_if_fail_warning
    at gmessages.c line 527
  • #2 gst_bin_remove_func
    at gstbin.c line 546
  • #3 gst_bin_remove
    at gstbin.c line 623
  • #4 remove_element_chain
    at gstdecodebin.c line 645
  • #5 unlinked
    at gstdecodebin.c line 710
  • #6 IA__g_cclosure_marshal_VOID__OBJECT
    at gmarshal.c line 636
  • #7 IA__g_closure_invoke
    at gclosure.c line 437
  • #8 signal_emit_unlocked_R
    at gsignal.c line 2485
  • #9 IA__g_signal_emit_valist
    at gsignal.c line 2244
  • #10 IA__g_signal_emit
    at gsignal.c line 2288
  • #11 gst_pad_unlink
    at gstpad.c line 1065
  • #12 gst_element_remove_pad
    at gstelement.c line 1257
  • #13 gst_element_dispose
    at gstelement.c line 3109
  • #14 gst_type_find_element_dispose
    at gsttypefindelement.c line 212
  • #15 g_object_last_unref
    at gobject.c line 558
  • #16 gst_object_unref
    at gstobject.c line 248
  • #17 gst_bin_remove_func
    at gstbin.c line 594
  • #18 gst_bin_remove
    at gstbin.c line 623
  • #19 gst_decode_bin_dispose
    at gstdecodebin.c line 324
  • #20 g_object_last_unref
    at gobject.c line 558
  • #21 gst_object_unref
    at gstobject.c line 248
  • #22 gst_bin_remove_func
    at gstbin.c line 594
  • #23 gst_bin_remove
    at gstbin.c line 623
  • #24 gst_bin_dispose
    at gstbin.c line 948
  • #25 gst_pipeline_dispose
    at gstpipeline.c line 141
  • #26 g_object_last_unref
    at gobject.c line 558

Comment 3 Ronald Bultje 2005-03-07 16:57:39 UTC
Created attachment 38377 [details] [review]
untested patch

I think this should fix it. Not totally sure, I may be doing a typo something
in this hell of recursive behaviour...
Comment 4 Ronald Bultje 2005-03-10 15:27:46 UTC
Applied.