summaryrefslogtreecommitdiff
path: root/src/post/planar
diff options
context:
space:
mode:
Diffstat (limited to 'src/post/planar')
-rw-r--r--src/post/planar/boxblur.c16
-rw-r--r--src/post/planar/denoise3d.c16
-rw-r--r--src/post/planar/eq.c16
-rw-r--r--src/post/planar/eq2.c16
-rw-r--r--src/post/planar/expand.c16
-rw-r--r--src/post/planar/fill.c16
-rw-r--r--src/post/planar/invert.c16
-rw-r--r--src/post/planar/noise.c16
-rw-r--r--src/post/planar/pp.c16
-rw-r--r--src/post/planar/unsharp.c16
10 files changed, 20 insertions, 140 deletions
diff --git a/src/post/planar/boxblur.c b/src/post/planar/boxblur.c
index b7a6f524f..dd22bef44 100644
--- a/src/post/planar/boxblur.c
+++ b/src/post/planar/boxblur.c
@@ -120,8 +120,6 @@ static xine_post_api_t post_api = {
static post_plugin_t *boxblur_open_plugin(post_class_t *class_gen, int inputs,
xine_audio_port_t **audio_target,
xine_video_port_t **video_target);
-static char *boxblur_get_identifier(post_class_t *class_gen);
-static char *boxblur_get_description(post_class_t *class_gen);
static void boxblur_class_dispose(post_class_t *class_gen);
/* plugin instance functions */
@@ -142,8 +140,8 @@ void *boxblur_init_plugin(xine_t *xine, void *data)
return NULL;
class->open_plugin = boxblur_open_plugin;
- class->get_identifier = boxblur_get_identifier;
- class->get_description = boxblur_get_description;
+ class->identifier = "boxblur";
+ class->description = _("box blur filter from mplayer");
class->dispose = boxblur_class_dispose;
return class;
@@ -194,16 +192,6 @@ static post_plugin_t *boxblur_open_plugin(post_class_t *class_gen, int inputs,
return &this->post;
}
-static char *boxblur_get_identifier(post_class_t *class_gen)
-{
- return "boxblur";
-}
-
-static char *boxblur_get_description(post_class_t *class_gen)
-{
- return "box blur filter from mplayer";
-}
-
static void boxblur_class_dispose(post_class_t *class_gen)
{
free(class_gen);
diff --git a/src/post/planar/denoise3d.c b/src/post/planar/denoise3d.c
index fb3c1102b..5bac53e52 100644
--- a/src/post/planar/denoise3d.c
+++ b/src/post/planar/denoise3d.c
@@ -157,8 +157,6 @@ static xine_post_api_t post_api = {
static post_plugin_t *denoise3d_open_plugin(post_class_t *class_gen, int inputs,
xine_audio_port_t **audio_target,
xine_video_port_t **video_target);
-static char *denoise3d_get_identifier(post_class_t *class_gen);
-static char *denoise3d_get_description(post_class_t *class_gen);
static void denoise3d_class_dispose(post_class_t *class_gen);
/* plugin instance functions */
@@ -182,8 +180,8 @@ void *denoise3d_init_plugin(xine_t *xine, void *data)
return NULL;
class->open_plugin = denoise3d_open_plugin;
- class->get_identifier = denoise3d_get_identifier;
- class->get_description = denoise3d_get_description;
+ class->identifier = "denoise3d";
+ class->description = _("3D Denoiser (variable lowpass filter)");
class->dispose = denoise3d_class_dispose;
return class;
@@ -237,16 +235,6 @@ static post_plugin_t *denoise3d_open_plugin(post_class_t *class_gen, int inputs,
return &this->post;
}
-static char *denoise3d_get_identifier(post_class_t *class_gen)
-{
- return "denoise3d";
-}
-
-static char *denoise3d_get_description(post_class_t *class_gen)
-{
- return "3D Denoiser (variable lowpass filter)";
-}
-
static void denoise3d_class_dispose(post_class_t *class_gen)
{
free(class_gen);
diff --git a/src/post/planar/eq.c b/src/post/planar/eq.c
index b2cf6e50f..bd1571603 100644
--- a/src/post/planar/eq.c
+++ b/src/post/planar/eq.c
@@ -208,8 +208,6 @@ static xine_post_api_t post_api = {
static post_plugin_t *eq_open_plugin(post_class_t *class_gen, int inputs,
xine_audio_port_t **audio_target,
xine_video_port_t **video_target);
-static char *eq_get_identifier(post_class_t *class_gen);
-static char *eq_get_description(post_class_t *class_gen);
static void eq_class_dispose(post_class_t *class_gen);
/* plugin instance functions */
@@ -234,8 +232,8 @@ void *eq_init_plugin(xine_t *xine, void *data)
return NULL;
class->open_plugin = eq_open_plugin;
- class->get_identifier = eq_get_identifier;
- class->get_description = eq_get_description;
+ class->identifier = "eq";
+ class->description = _("soft video equalizer");
class->dispose = eq_class_dispose;
return class;
@@ -292,16 +290,6 @@ static post_plugin_t *eq_open_plugin(post_class_t *class_gen, int inputs,
return &this->post;
}
-static char *eq_get_identifier(post_class_t *class_gen)
-{
- return "eq";
-}
-
-static char *eq_get_description(post_class_t *class_gen)
-{
- return "soft video equalizer";
-}
-
static void eq_class_dispose(post_class_t *class_gen)
{
free(class_gen);
diff --git a/src/post/planar/eq2.c b/src/post/planar/eq2.c
index 6b277c347..e33f6075b 100644
--- a/src/post/planar/eq2.c
+++ b/src/post/planar/eq2.c
@@ -389,8 +389,6 @@ static xine_post_api_t post_api = {
static post_plugin_t *eq2_open_plugin(post_class_t *class_gen, int inputs,
xine_audio_port_t **audio_target,
xine_video_port_t **video_target);
-static char *eq2_get_identifier(post_class_t *class_gen);
-static char *eq2_get_description(post_class_t *class_gen);
static void eq2_class_dispose(post_class_t *class_gen);
/* plugin instance functions */
@@ -415,8 +413,8 @@ void *eq2_init_plugin(xine_t *xine, void *data)
return NULL;
class->open_plugin = eq2_open_plugin;
- class->get_identifier = eq2_get_identifier;
- class->get_description = eq2_get_description;
+ class->identifier = "eq2";
+ class->description = _("Software video equalizer");
class->dispose = eq2_class_dispose;
return class;
@@ -489,16 +487,6 @@ static post_plugin_t *eq2_open_plugin(post_class_t *class_gen, int inputs,
return &this->post;
}
-static char *eq2_get_identifier(post_class_t *class_gen)
-{
- return "eq2";
-}
-
-static char *eq2_get_description(post_class_t *class_gen)
-{
- return "Software video equalizer";
-}
-
static void eq2_class_dispose(post_class_t *class_gen)
{
free(class_gen);
diff --git a/src/post/planar/expand.c b/src/post/planar/expand.c
index 67d449153..d654190f5 100644
--- a/src/post/planar/expand.c
+++ b/src/post/planar/expand.c
@@ -100,8 +100,6 @@ typedef struct post_expand_s {
static post_plugin_t *expand_open_plugin(post_class_t *class_gen, int inputs,
xine_audio_port_t **audio_target,
xine_video_port_t **video_target);
-static char *expand_get_identifier(post_class_t *class_gen);
-static char *expand_get_description(post_class_t *class_gen);
static void expand_class_dispose(post_class_t *class_gen);
/* plugin instance functions */
@@ -136,8 +134,8 @@ void *expand_init_plugin(xine_t *xine, void *data)
return NULL;
class->open_plugin = expand_open_plugin;
- class->get_identifier = expand_get_identifier;
- class->get_description = expand_get_description;
+ class->identifier = "expand";
+ class->description = _("add black borders to top and bottom of video to expand it to 4:3 aspect ratio");
class->dispose = expand_class_dispose;
return class;
@@ -191,16 +189,6 @@ static post_plugin_t *expand_open_plugin(post_class_t *class_gen, int inputs,
return &this->post;
}
-static char *expand_get_identifier(post_class_t *class_gen)
-{
- return "expand";
-}
-
-static char *expand_get_description(post_class_t *class_gen)
-{
- return "add black borders to top and bottom of video to expand it to 4:3 aspect ratio";
-}
-
static void expand_class_dispose(post_class_t *class_gen)
{
free(class_gen);
diff --git a/src/post/planar/fill.c b/src/post/planar/fill.c
index 32a9d5dfb..3406a57b1 100644
--- a/src/post/planar/fill.c
+++ b/src/post/planar/fill.c
@@ -32,8 +32,6 @@ void *fill_init_plugin(xine_t *xine, void *);
static post_plugin_t *fill_open_plugin(post_class_t *class_gen, int inputs,
xine_audio_port_t **audio_target,
xine_video_port_t **video_target);
-static char *fill_get_identifier(post_class_t *class_gen);
-static char *fill_get_description(post_class_t *class_gen);
static void fill_class_dispose(post_class_t *class_gen);
/* plugin instance functions */
@@ -54,8 +52,8 @@ void *fill_init_plugin(xine_t *xine, void *data)
return NULL;
class->open_plugin = fill_open_plugin;
- class->get_identifier = fill_get_identifier;
- class->get_description = fill_get_description;
+ class->identifier = "fill";
+ class->description = _("crops left and right of video to fill 4:3 aspect ratio");
class->dispose = fill_class_dispose;
return class;
@@ -92,16 +90,6 @@ static post_plugin_t *fill_open_plugin(post_class_t *class_gen, int inputs,
return this;
}
-static char *fill_get_identifier(post_class_t *class_gen)
-{
- return "fill";
-}
-
-static char *fill_get_description(post_class_t *class_gen)
-{
- return "crops left and right of video to fill 4:3 aspect ratio";
-}
-
static void fill_class_dispose(post_class_t *class_gen)
{
free(class_gen);
diff --git a/src/post/planar/invert.c b/src/post/planar/invert.c
index 1aa5c2a2e..d8a83ee28 100644
--- a/src/post/planar/invert.c
+++ b/src/post/planar/invert.c
@@ -33,8 +33,6 @@ void *invert_init_plugin(xine_t *xine, void *);
static post_plugin_t *invert_open_plugin(post_class_t *class_gen, int inputs,
xine_audio_port_t **audio_target,
xine_video_port_t **video_target);
-static char *invert_get_identifier(post_class_t *class_gen);
-static char *invert_get_description(post_class_t *class_gen);
static void invert_class_dispose(post_class_t *class_gen);
/* plugin instance functions */
@@ -55,8 +53,8 @@ void *invert_init_plugin(xine_t *xine, void *data)
return NULL;
class->open_plugin = invert_open_plugin;
- class->get_identifier = invert_get_identifier;
- class->get_description = invert_get_description;
+ class->identifier = "invert";
+ class->description = _("inverts the colours of every video frame");
class->dispose = invert_class_dispose;
return class;
@@ -91,16 +89,6 @@ static post_plugin_t *invert_open_plugin(post_class_t *class_gen, int inputs,
return this;
}
-static char *invert_get_identifier(post_class_t *class_gen)
-{
- return "invert";
-}
-
-static char *invert_get_description(post_class_t *class_gen)
-{
- return "inverts the colours of every video frame";
-}
-
static void invert_class_dispose(post_class_t *class_gen)
{
free(class_gen);
diff --git a/src/post/planar/noise.c b/src/post/planar/noise.c
index 8c04f2e72..31d61c62b 100644
--- a/src/post/planar/noise.c
+++ b/src/post/planar/noise.c
@@ -429,8 +429,6 @@ static xine_post_api_t post_api = {
static post_plugin_t *noise_open_plugin(post_class_t *class_gen, int inputs,
xine_audio_port_t **audio_target,
xine_video_port_t **video_target);
-static char *noise_get_identifier(post_class_t *class_gen);
-static char *noise_get_description(post_class_t *class_gen);
static void noise_class_dispose(post_class_t *class_gen);
/* plugin instance functions */
@@ -451,8 +449,8 @@ void *noise_init_plugin(xine_t *xine, void *data)
return NULL;
class->open_plugin = noise_open_plugin;
- class->get_identifier = noise_get_identifier;
- class->get_description = noise_get_description;
+ class->identifier = "noise";
+ class->description = _("Adds noise");
class->dispose = noise_class_dispose;
#ifdef ARCH_X86
@@ -515,16 +513,6 @@ static post_plugin_t *noise_open_plugin(post_class_t *class_gen, int inputs,
return &this->post;
}
-static char *noise_get_identifier(post_class_t *class_gen)
-{
- return "noise";
-}
-
-static char *noise_get_description(post_class_t *class_gen)
-{
- return "Adds noise";
-}
-
static void noise_class_dispose(post_class_t *class_gen)
{
free(class_gen);
diff --git a/src/post/planar/pp.c b/src/post/planar/pp.c
index e13119311..dead0e543 100644
--- a/src/post/planar/pp.c
+++ b/src/post/planar/pp.c
@@ -135,8 +135,6 @@ static xine_post_api_t post_api = {
static post_plugin_t *pp_open_plugin(post_class_t *class_gen, int inputs,
xine_audio_port_t **audio_target,
xine_video_port_t **video_target);
-static char *pp_get_identifier(post_class_t *class_gen);
-static char *pp_get_description(post_class_t *class_gen);
static void pp_class_dispose(post_class_t *class_gen);
/* plugin instance functions */
@@ -157,8 +155,8 @@ void *pp_init_plugin(xine_t *xine, void *data)
return NULL;
class->open_plugin = pp_open_plugin;
- class->get_identifier = pp_get_identifier;
- class->get_description = pp_get_description;
+ class->identifier = "pp";
+ class->description = _("plugin for ffmpeg libpostprocess");
class->dispose = pp_class_dispose;
return class;
@@ -221,16 +219,6 @@ static post_plugin_t *pp_open_plugin(post_class_t *class_gen, int inputs,
return &this->post;
}
-static char *pp_get_identifier(post_class_t *class_gen)
-{
- return "pp";
-}
-
-static char *pp_get_description(post_class_t *class_gen)
-{
- return "plugin for ffmpeg libpostprocess";
-}
-
static void pp_class_dispose(post_class_t *class_gen)
{
free(class_gen);
diff --git a/src/post/planar/unsharp.c b/src/post/planar/unsharp.c
index b9b791a8e..ffce45a91 100644
--- a/src/post/planar/unsharp.c
+++ b/src/post/planar/unsharp.c
@@ -253,8 +253,6 @@ static xine_post_api_t post_api = {
static post_plugin_t *unsharp_open_plugin(post_class_t *class_gen, int inputs,
xine_audio_port_t **audio_target,
xine_video_port_t **video_target);
-static char *unsharp_get_identifier(post_class_t *class_gen);
-static char *unsharp_get_description(post_class_t *class_gen);
static void unsharp_class_dispose(post_class_t *class_gen);
/* plugin instance functions */
@@ -275,8 +273,8 @@ void *unsharp_init_plugin(xine_t *xine, void *data)
return NULL;
class->open_plugin = unsharp_open_plugin;
- class->get_identifier = unsharp_get_identifier;
- class->get_description = unsharp_get_description;
+ class->identifier = "unsharp";
+ class->description = _("unsharp mask & gaussian blur");
class->dispose = unsharp_class_dispose;
return class;
@@ -332,16 +330,6 @@ static post_plugin_t *unsharp_open_plugin(post_class_t *class_gen, int inputs,
return &this->post;
}
-static char *unsharp_get_identifier(post_class_t *class_gen)
-{
- return "unsharp";
-}
-
-static char *unsharp_get_description(post_class_t *class_gen)
-{
- return "unsharp mask & gaussian blur";
-}
-
static void unsharp_class_dispose(post_class_t *class_gen)
{
free(class_gen);