mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
sys/dshowdecwrapper/: Chain up dispose methods properly. Fixes bug #515970.
Original commit message from CVS: * sys/dshowdecwrapper/gstdshowaudiodec.c: (gst_dshowaudiodec_dispose): * sys/dshowdecwrapper/gstdshowvideodec.c: (gst_dshowvideodec_dispose): Chain up dispose methods properly. Fixes bug #515970.
This commit is contained in:
parent
a454306f9b
commit
32c43f884e
3 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,11 @@
|
|||
2008-02-12 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* sys/dshowdecwrapper/gstdshowaudiodec.c:
|
||||
(gst_dshowaudiodec_dispose):
|
||||
* sys/dshowdecwrapper/gstdshowvideodec.c:
|
||||
(gst_dshowvideodec_dispose):
|
||||
Chain up dispose methods properly. Fixes bug #515970.
|
||||
|
||||
2008-02-12 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* gst/mpegvideoparse/mpegvideoparse.c:
|
||||
|
|
|
@ -327,6 +327,8 @@ gst_dshowaudiodec_dispose (GObject * object)
|
|||
}
|
||||
|
||||
CoUninitialize ();
|
||||
|
||||
G_OBJECT_CLASS (parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -349,6 +349,8 @@ gst_dshowvideodec_dispose (GObject * object)
|
|||
}
|
||||
|
||||
CoUninitialize ();
|
||||
|
||||
G_OBJECT_CLASS (parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
static GstStateChangeReturn
|
||||
|
|
Loading…
Reference in a new issue