mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
4e11c34300
Original commit message from CVS: * gst/goom/config_param.c: (goom_plugin_parameters_free): * gst/goom/convolve_fx.c: (convolve_init), (convolve_free): * gst/goom/filters.c: (zoomFilterVisualFXWrapper_free): * gst/goom/flying_stars_fx.c: (fs_free): * gst/goom/goom_config_param.h: * gst/goom/goom_core.c: (goom_init), (goom_close): * gst/goom/goom_plugin_info.h: * gst/goom/gstgoom.c: (gst_goom_finalize): * gst/goom/lines.c: (goom_lines_free): * gst/goom/plugin_info.c: (plugin_info_init), (plugin_info_free): * gst/goom/surf3d.c: (grid3d_free): * gst/goom/surf3d.h: * gst/goom/tentacle3d.c: (tentacle_free): Free a bunch of stuff, and initialise things to fix leaks and valgrind warnings in the testsuite. Fixes: #529268
147 lines
2.5 KiB
C
147 lines
2.5 KiB
C
/*---------------------------------------------------------------------------*/
|
|
/*
|
|
** config_param.c
|
|
** Goom Project
|
|
**
|
|
** Created by Jean-Christophe Hoelt on Sat Jul 19 2003
|
|
** Copyright (c) 2003 iOS. All rights reserved.
|
|
*/
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
#include "goom_config_param.h"
|
|
#include <string.h>
|
|
|
|
/* TODO: Ajouter goom_ devant ces fonctions */
|
|
|
|
static void
|
|
empty_fct (PluginParam * dummy)
|
|
{
|
|
}
|
|
|
|
PluginParam
|
|
goom_secure_param ()
|
|
{
|
|
PluginParam p;
|
|
|
|
p.changed = empty_fct;
|
|
p.change_listener = empty_fct;
|
|
p.user_data = 0;
|
|
p.name = p.desc = 0;
|
|
p.rw = 1;
|
|
return p;
|
|
}
|
|
|
|
PluginParam
|
|
goom_secure_f_param (char *name)
|
|
{
|
|
PluginParam p = secure_param ();
|
|
|
|
p.name = name;
|
|
p.type = PARAM_FLOATVAL;
|
|
FVAL (p) = 0.5f;
|
|
FMIN (p) = 0.0f;
|
|
FMAX (p) = 1.0f;
|
|
FSTEP (p) = 0.01f;
|
|
return p;
|
|
}
|
|
|
|
PluginParam
|
|
goom_secure_f_feedback (char *name)
|
|
{
|
|
PluginParam p = secure_f_param (name);
|
|
|
|
p.rw = 0;
|
|
return p;
|
|
}
|
|
|
|
PluginParam
|
|
goom_secure_s_param (char *name)
|
|
{
|
|
PluginParam p = secure_param ();
|
|
|
|
p.name = name;
|
|
p.type = PARAM_STRVAL;
|
|
SVAL (p) = 0;
|
|
return p;
|
|
}
|
|
|
|
PluginParam
|
|
goom_secure_b_param (char *name, int value)
|
|
{
|
|
PluginParam p = secure_param ();
|
|
|
|
p.name = name;
|
|
p.type = PARAM_BOOLVAL;
|
|
BVAL (p) = value;
|
|
return p;
|
|
}
|
|
|
|
PluginParam
|
|
goom_secure_i_param (char *name)
|
|
{
|
|
PluginParam p = secure_param ();
|
|
|
|
p.name = name;
|
|
p.type = PARAM_INTVAL;
|
|
IVAL (p) = 50;
|
|
IMIN (p) = 0;
|
|
IMAX (p) = 100;
|
|
ISTEP (p) = 1;
|
|
return p;
|
|
}
|
|
|
|
PluginParam
|
|
goom_secure_i_feedback (char *name)
|
|
{
|
|
PluginParam p = secure_i_param (name);
|
|
|
|
p.rw = 0;
|
|
return p;
|
|
}
|
|
|
|
PluginParameters
|
|
goom_plugin_parameters (const char *name, int nb)
|
|
{
|
|
PluginParameters p;
|
|
|
|
p.name = (char *) name;
|
|
p.desc = "";
|
|
p.nbParams = nb;
|
|
p.params = (PluginParam **) malloc (nb * sizeof (PluginParam *));
|
|
return p;
|
|
}
|
|
|
|
void
|
|
goom_plugin_parameters_free (PluginParameters * p)
|
|
{
|
|
free (p->params);
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
goom_set_str_param_value (PluginParam * p, const char *str)
|
|
{
|
|
int len = strlen (str);
|
|
|
|
if (SVAL (*p))
|
|
SVAL (*p) = (char *) realloc (SVAL (*p), len + 1);
|
|
else
|
|
SVAL (*p) = (char *) malloc (len + 1);
|
|
memcpy (SVAL (*p), str, len + 1);
|
|
}
|
|
|
|
void
|
|
goom_set_list_param_value (PluginParam * p, const char *str)
|
|
{
|
|
int len = strlen (str);
|
|
|
|
#ifdef VERBOSE
|
|
printf ("%s: %d\n", str, len);
|
|
#endif
|
|
if (LVAL (*p))
|
|
LVAL (*p) = (char *) realloc (LVAL (*p), len + 1);
|
|
else
|
|
LVAL (*p) = (char *) malloc (len + 1);
|
|
memcpy (LVAL (*p), str, len + 1);
|
|
}
|