mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
ext/ffmpeg/gstffmpegenc.c: Turn dispose function into finalize function to avoid double-frees and potential crashes c...
Original commit message from CVS: * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init), (gst_ffmpegenc_finalize): Turn dispose function into finalize function to avoid double-frees and potential crashes caused by them in some circumstances. Fixes #392395.
This commit is contained in:
parent
c0322416f6
commit
1eeff88bae
2 changed files with 12 additions and 4 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2007-01-03 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
|
||||||
|
(gst_ffmpegenc_finalize):
|
||||||
|
Turn dispose function into finalize function to avoid double-frees
|
||||||
|
and potential crashes caused by them in some circumstances.
|
||||||
|
Fixes #392395.
|
||||||
|
|
||||||
2006-12-21 Tim-Philipp Müller <tim at centricular dot net>
|
2006-12-21 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_smpfmt):
|
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_smpfmt):
|
||||||
|
|
|
@ -95,7 +95,7 @@ static GHashTable *enc_global_plugins;
|
||||||
static void gst_ffmpegenc_class_init (GstFFMpegEncClass * klass);
|
static void gst_ffmpegenc_class_init (GstFFMpegEncClass * klass);
|
||||||
static void gst_ffmpegenc_base_init (GstFFMpegEncClass * klass);
|
static void gst_ffmpegenc_base_init (GstFFMpegEncClass * klass);
|
||||||
static void gst_ffmpegenc_init (GstFFMpegEnc * ffmpegenc);
|
static void gst_ffmpegenc_init (GstFFMpegEnc * ffmpegenc);
|
||||||
static void gst_ffmpegenc_dispose (GObject * object);
|
static void gst_ffmpegenc_finalize (GObject * object);
|
||||||
|
|
||||||
static gboolean gst_ffmpegenc_setcaps (GstPad * pad, GstCaps * caps);
|
static gboolean gst_ffmpegenc_setcaps (GstPad * pad, GstCaps * caps);
|
||||||
static GstCaps *gst_ffmpegenc_getcaps (GstPad * pad);
|
static GstCaps *gst_ffmpegenc_getcaps (GstPad * pad);
|
||||||
|
@ -208,7 +208,7 @@ gst_ffmpegenc_class_init (GstFFMpegEncClass * klass)
|
||||||
|
|
||||||
gstelement_class->change_state = gst_ffmpegenc_change_state;
|
gstelement_class->change_state = gst_ffmpegenc_change_state;
|
||||||
|
|
||||||
gobject_class->dispose = gst_ffmpegenc_dispose;
|
gobject_class->finalize = gst_ffmpegenc_finalize;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -259,7 +259,7 @@ gst_ffmpegenc_init (GstFFMpegEnc * ffmpegenc)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gst_ffmpegenc_dispose (GObject * object)
|
gst_ffmpegenc_finalize (GObject * object)
|
||||||
{
|
{
|
||||||
GstFFMpegEnc *ffmpegenc = (GstFFMpegEnc *) object;
|
GstFFMpegEnc *ffmpegenc = (GstFFMpegEnc *) object;
|
||||||
|
|
||||||
|
@ -276,7 +276,7 @@ gst_ffmpegenc_dispose (GObject * object)
|
||||||
g_queue_free (ffmpegenc->delay);
|
g_queue_free (ffmpegenc->delay);
|
||||||
g_free (ffmpegenc->filename);
|
g_free (ffmpegenc->filename);
|
||||||
|
|
||||||
G_OBJECT_CLASS (parent_class)->dispose (object);
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstCaps *
|
static GstCaps *
|
||||||
|
|
Loading…
Reference in a new issue