[FFmpeg-devel] [PATCH 07/11] vf_select: remove mathematical constants now redundant.

Nicolas George nicolas.george at normalesup.org
Thu Oct 13 17:54:07 CEST 2011


Signed-off-by: Nicolas George <nicolas.george at normalesup.org>
---
 doc/filters.texi        |    9 ---------
 libavfilter/vf_select.c |   12 ------------
 2 files changed, 0 insertions(+), 21 deletions(-)

diff --git a/doc/filters.texi b/doc/filters.texi
index be71e7a..5246274 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -1740,15 +1740,6 @@ is selected and passed to the output, otherwise it is discarded.
 The expression can contain the following constants:
 
 @table @option
- at item PI
-Greek PI
-
- at item PHI
-golden ratio
-
- at item E
-Euler number
-
 @item n
 the sequential number of the filtered frame, starting from 0
 
diff --git a/libavfilter/vf_select.c b/libavfilter/vf_select.c
index 3ba2670..262cccf 100644
--- a/libavfilter/vf_select.c
+++ b/libavfilter/vf_select.c
@@ -28,10 +28,6 @@
 #include "avfilter.h"
 
 static const char *var_names[] = {
-    "E",                 ///< Euler number
-    "PHI",               ///< golden ratio
-    "PI",                ///< greek pi
-
     "TB",                ///< timebase
 
     "pts",               ///< original pts in the file of the frame
@@ -69,10 +65,6 @@ static const char *var_names[] = {
 };
 
 enum var_name {
-    VAR_E,
-    VAR_PHI,
-    VAR_PI,
-
     VAR_TB,
 
     VAR_PTS,
@@ -146,10 +138,6 @@ static int config_input(AVFilterLink *inlink)
 {
     SelectContext *select = inlink->dst->priv;
 
-    select->var_values[VAR_E]   = M_E;
-    select->var_values[VAR_PHI] = M_PHI;
-    select->var_values[VAR_PI]  = M_PI;
-
     select->var_values[VAR_N]          = 0.0;
     select->var_values[VAR_SELECTED_N] = 0.0;
 
-- 
1.7.6.3



More information about the ffmpeg-devel mailing list