gst-libs/gst/audio/mixerutils.c: actually save the element we create

Original commit message from CVS:

* gst-libs/gst/audio/mixerutils.c:
(gst_audio_mixer_filter_do_filter):
actually save the element we create
This commit is contained in:
Thomas Vander Stichele 2006-01-13 16:45:50 +00:00
parent 508f183e47
commit 5fd8ee2ea4
3 changed files with 8 additions and 11 deletions

View file

@ -1,3 +1,9 @@
2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
* gst-libs/gst/audio/mixerutils.c:
(gst_audio_mixer_filter_do_filter):
actually save the element we create
2006-01-12 Tim-Philipp Müller <tim at centricular dot net> 2006-01-12 Tim-Philipp Müller <tim at centricular dot net>
* gst-libs/gst/cdda/gstcddabasesrc.c: * gst-libs/gst/cdda/gstcddabasesrc.c:

View file

@ -23,15 +23,6 @@ interface for adjusting color balance settings
</para> </para>
<!-- ##### SIGNAL GstColorBalance::value-changed ##### -->
<para>
</para>
@gstcolorbalance: the object which received the signal.
@arg1:
@arg2:
<!-- ##### STRUCT GstColorBalanceClass ##### --> <!-- ##### STRUCT GstColorBalanceClass ##### -->
<para> <para>

View file

@ -47,9 +47,9 @@ gst_audio_mixer_filter_do_filter (GstAudioMixerFilterFunc filter_func,
*p_element = NULL; *p_element = NULL;
} }
/* create new element for further probing if the old one */ /* create new element for further probing if the old one was cleared */
if (*p_element == NULL) { if (*p_element == NULL) {
gst_element_factory_create (factory, NULL); *p_element = gst_element_factory_create (factory, NULL);
} }
} }