mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:36:20 +00:00
avdeinterlace: Chain up to parent class' dispose()
https://bugzilla.gnome.org/show_bug.cgi?id=757498
This commit is contained in:
parent
46fb2e9f11
commit
e04bcf0601
1 changed files with 3 additions and 0 deletions
|
@ -310,7 +310,10 @@ static void
|
||||||
gst_ffmpegdeinterlace_dispose (GObject * obj)
|
gst_ffmpegdeinterlace_dispose (GObject * obj)
|
||||||
{
|
{
|
||||||
GstFFMpegDeinterlace *deinterlace = GST_FFMPEGDEINTERLACE (obj);
|
GstFFMpegDeinterlace *deinterlace = GST_FFMPEGDEINTERLACE (obj);
|
||||||
|
|
||||||
delete_filter_graph (deinterlace);
|
delete_filter_graph (deinterlace);
|
||||||
|
|
||||||
|
G_OBJECT_CLASS (gst_ffmpegdeinterlace_parent_class)->dispose (obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
|
Loading…
Reference in a new issue