[FFmpeg-cvslog] lavfi/perms: switch to an AVOptions-based system.

Clément Bœsch git at videolan.org
Wed Apr 10 23:34:35 CEST 2013


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Wed Apr 10 22:15:10 2013 +0200| [8388e1e2b343e25b3a7de31079557285b7353ebd] | committer: Clément Bœsch

lavfi/perms: switch to an AVOptions-based system.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8388e1e2b343e25b3a7de31079557285b7353ebd
---

 doc/filters.texi       |    6 +-----
 libavfilter/avfilter.c |    2 ++
 libavfilter/f_perms.c  |    4 ----
 3 files changed, 3 insertions(+), 9 deletions(-)

diff --git a/doc/filters.texi b/doc/filters.texi
index 1155463..796cdce 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -6344,11 +6344,7 @@ Set read/write permissions for the output frames.
 These filters are mainly aimed at developers to test direct path in the
 following filter in the filtergraph.
 
-The filters accept parameters as a list of @var{key}=@var{value} pairs,
-separated by ":". If the key of the first options is omitted, the argument is
-assumed to be the @var{mode}.
-
-A description of the accepted parameters follows.
+The filters accept the following options:
 
 @table @option
 @item mode
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 6ec944b..a7d05e4 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -681,6 +681,8 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque
         !strcmp(filter->filter->name, "pad"        ) ||
         !strcmp(filter->filter->name,   "format") ||
         !strcmp(filter->filter->name, "noformat") ||
+        !strcmp(filter->filter->name, "perms")  ||
+        !strcmp(filter->filter->name, "aperms") ||
         !strcmp(filter->filter->name, "resample") ||
         !strcmp(filter->filter->name, "showspectrum") ||
         !strcmp(filter->filter->name, "silencedetect") ||
diff --git a/libavfilter/f_perms.c b/libavfilter/f_perms.c
index 9853eab..3367417 100644
--- a/libavfilter/f_perms.c
+++ b/libavfilter/f_perms.c
@@ -111,8 +111,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
     return ret;
 }
 
-static const char *const shorthand[] = { "mode", NULL };
-
 #if CONFIG_APERMS_FILTER
 
 #define aperms_options options
@@ -143,7 +141,6 @@ AVFilter avfilter_af_aperms = {
     .inputs      = aperms_inputs,
     .outputs     = aperms_outputs,
     .priv_class  = &aperms_class,
-    .shorthand   = shorthand,
 };
 #endif /* CONFIG_APERMS_FILTER */
 
@@ -177,6 +174,5 @@ AVFilter avfilter_vf_perms = {
     .inputs      = perms_inputs,
     .outputs     = perms_outputs,
     .priv_class  = &perms_class,
-    .shorthand   = shorthand,
 };
 #endif /* CONFIG_PERMS_FILTER */



More information about the ffmpeg-cvslog mailing list