Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Thibault Saunier
gst-plugins-good
Commits
647e2dd7
Commit
647e2dd7
authored
Aug 16, 2007
by
Stefan Kost
Browse files
gst/debug/rndbuffersize.c: Fix da leak.
Original commit message from CVS: * gst/debug/rndbuffersize.c: Fix da leak.
parent
e949d198
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
647e2dd7
2007-08-16 Stefan Kost <ensonic@users.sf.net>
* gst/debug/rndbuffersize.c:
Fix da leak.
2007-08-14 Stefan Kost <ensonic@users.sf.net>
* gst/debug/Makefile.am:
...
...
gst/debug/rndbuffersize.c
View file @
647e2dd7
...
...
@@ -77,6 +77,7 @@ GST_STATIC_PAD_TEMPLATE ("sink",
GST_PAD_ALWAYS
,
GST_STATIC_CAPS_ANY
);
static
void
gst_rnd_buffer_size_finalize
(
GObject
*
object
);
static
void
gst_rnd_buffer_size_set_property
(
GObject
*
object
,
guint
prop_id
,
const
GValue
*
value
,
GParamSpec
*
pspec
);
static
void
gst_rnd_buffer_size_get_property
(
GObject
*
object
,
guint
prop_id
,
...
...
@@ -122,6 +123,7 @@ gst_rnd_buffer_size_class_init (GstRndBufferSizeClass * klass)
GST_DEBUG_FUNCPTR
(
gst_rnd_buffer_size_set_property
);
gobject_class
->
get_property
=
GST_DEBUG_FUNCPTR
(
gst_rnd_buffer_size_get_property
);
gobject_class
->
finalize
=
GST_DEBUG_FUNCPTR
(
gst_rnd_buffer_size_finalize
);
gstelement_class
->
change_state
=
GST_DEBUG_FUNCPTR
(
gst_rnd_buffer_size_change_state
);
...
...
@@ -161,6 +163,20 @@ gst_rnd_buffer_size_init (GstRndBufferSize * self,
}
static
void
gst_rnd_buffer_size_finalize
(
GObject
*
object
)
{
GstRndBufferSize
*
self
=
GST_RND_BUFFER_SIZE
(
object
);
if
(
self
->
rand
)
{
g_rand_free
(
self
->
rand
);
self
->
rand
=
NULL
;
}
G_OBJECT_CLASS
(
parent_class
)
->
finalize
(
object
);
}
static
void
gst_rnd_buffer_size_set_property
(
GObject
*
object
,
guint
prop_id
,
const
GValue
*
value
,
GParamSpec
*
pspec
)
...
...
@@ -278,7 +294,9 @@ gst_rnd_buffer_size_change_state (GstElement * element,
break
;
case
GST_STATE_CHANGE_READY_TO_PAUSED
:
self
->
offset
=
0
;
self
->
rand
=
g_rand_new_with_seed
(
self
->
seed
);
if
(
!
self
->
rand
)
{
self
->
rand
=
g_rand_new_with_seed
(
self
->
seed
);
}
break
;
case
GST_STATE_CHANGE_PAUSED_TO_PLAYING
:
break
;
...
...
@@ -292,8 +310,10 @@ gst_rnd_buffer_size_change_state (GstElement * element,
case
GST_STATE_CHANGE_PLAYING_TO_PAUSED
:
break
;
case
GST_STATE_CHANGE_PAUSED_TO_READY
:
g_rand_free
(
self
->
rand
);
self
->
rand
=
NULL
;
if
(
self
->
rand
)
{
g_rand_free
(
self
->
rand
);
self
->
rand
=
NULL
;
}
break
;
case
GST_STATE_CHANGE_READY_TO_NULL
:
break
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment