summaryrefslogtreecommitdiff
path: root/src/post/goom/goom_config_param.h
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2004-11-21 15:10:39 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2004-11-21 15:10:39 +0000
commit880e06de387646fa3f0efde940d731e71afbbb93 (patch)
tree890e4333544c124848eb3e7564b200f5c94974e5 /src/post/goom/goom_config_param.h
parent312b775d0a22284a60d36420cf8798c0fd1bfa3a (diff)
downloadxine-lib-880e06de387646fa3f0efde940d731e71afbbb93.tar.gz
xine-lib-880e06de387646fa3f0efde940d731e71afbbb93.tar.bz2
updated goom to 2k4-dev21
* tweaked somewhat to avoid the bright circle for the first seconds of playback * no idea whether this fixes the AMD64 problems, I have not found anything suspicious CVS patchset: 7143 CVS date: 2004/11/21 15:10:39
Diffstat (limited to 'src/post/goom/goom_config_param.h')
-rw-r--r--src/post/goom/goom_config_param.h31
1 files changed, 21 insertions, 10 deletions
diff --git a/src/post/goom/goom_config_param.h b/src/post/goom/goom_config_param.h
index cfa16917b..3c6838d30 100644
--- a/src/post/goom/goom_config_param.h
+++ b/src/post/goom/goom_config_param.h
@@ -79,18 +79,18 @@ typedef struct _PARAM {
#define IMAX(p) ((p).param.ival.max)
#define ISTEP(p) ((p).param.ival.step)
-PluginParam secure_param(void);
+PluginParam goom_secure_param(void);
-PluginParam secure_f_param(char *name);
-PluginParam secure_i_param(char *name);
-PluginParam secure_b_param(char *name, int value);
-PluginParam secure_s_param(char *name);
+PluginParam goom_secure_f_param(char *name);
+PluginParam goom_secure_i_param(char *name);
+PluginParam goom_secure_b_param(char *name, int value);
+PluginParam goom_secure_s_param(char *name);
-PluginParam secure_f_feedback(char *name);
-PluginParam secure_i_feedback(char *name);
+PluginParam goom_secure_f_feedback(char *name);
+PluginParam goom_secure_i_feedback(char *name);
-void set_str_param_value(PluginParam *p, const char *str);
-void set_list_param_value(PluginParam *p, const char *str);
+void goom_set_str_param_value(PluginParam *p, const char *str);
+void goom_set_list_param_value(PluginParam *p, const char *str);
typedef struct _PARAMETERS {
char *name;
@@ -99,6 +99,17 @@ typedef struct _PARAMETERS {
PluginParam **params;
} PluginParameters;
-PluginParameters plugin_parameters(const char *name, int nb);
+PluginParameters goom_plugin_parameters(const char *name, int nb);
+
+#define secure_param goom_secure_param
+#define secure_f_param goom_secure_f_param
+#define secure_i_param goom_secure_i_param
+#define secure_b_param goom_secure_b_param
+#define secure_s_param goom_secure_s_param
+#define secure_f_feedback goom_secure_f_feedback
+#define secure_i_feedback goom_secure_i_feedback
+#define set_list_param_value goom_set_list_param_value
+#define set_str_param_value goom_set_str_param_value
+#define plugin_parameters goom_plugin_parameters
#endif