[FFmpeg-cvslog] vf_settb: remove mathematical constants now redundant.

Nicolas George git at videolan.org
Thu Oct 13 18:33:21 CEST 2011


ffmpeg | branch: master | Nicolas George <nicolas.george at normalesup.org> | Thu Oct 13 17:54:09 2011 +0200| [94b345855f436c26ef80d2ea2d4c68bb146cc96f] | committer: Michael Niedermayer

vf_settb: remove mathematical constants now redundant.

Signed-off-by: Nicolas George <nicolas.george at normalesup.org>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 doc/filters.texi       |    2 +-
 libavfilter/vf_settb.c |    9 ---------
 2 files changed, 1 insertions(+), 10 deletions(-)

diff --git a/doc/filters.texi b/doc/filters.texi
index 5f3d090..b8bf56d 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -1954,7 +1954,7 @@ Set the timebase to use for the output frames timestamps.
 It is mainly useful for testing timebase configuration.
 
 It accepts in input an arithmetic expression representing a rational.
-The expression can contain the constants "PI", "E", "PHI", "AVTB" (the
+The expression can contain the constants "AVTB" (the
 default timebase), and "intb" (the input timebase).
 
 The default value for the input is "intb".
diff --git a/libavfilter/vf_settb.c b/libavfilter/vf_settb.c
index d0ac35c..e74ee65 100644
--- a/libavfilter/vf_settb.c
+++ b/libavfilter/vf_settb.c
@@ -31,18 +31,12 @@
 #include "internal.h"
 
 static const char *var_names[] = {
-    "E",
-    "PHI",
-    "PI",
     "AVTB",   /* default timebase 1/AV_TIME_BASE */
     "intb",   /* input timebase */
     NULL
 };
 
 enum var_name {
-    VAR_E,
-    VAR_PHI,
-    VAR_PI,
     VAR_AVTB,
     VAR_INTB,
     VAR_VARS_NB
@@ -73,9 +67,6 @@ static int config_output_props(AVFilterLink *outlink)
     int ret;
     double res;
 
-    settb->var_values[VAR_E]    = M_E;
-    settb->var_values[VAR_PHI]  = M_PHI;
-    settb->var_values[VAR_PI]   = M_PI;
     settb->var_values[VAR_AVTB] = av_q2d(AV_TIME_BASE_Q);
     settb->var_values[VAR_INTB] = av_q2d(inlink->time_base);
 



More information about the ffmpeg-cvslog mailing list