diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2011-10-13 17:54:09 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-13 18:08:50 +0200 |
commit | 94b345855f436c26ef80d2ea2d4c68bb146cc96f (patch) | |
tree | 40d3bd20599cd0215f62f8d714f2abc58800b4fb /libavfilter | |
parent | db820c3c1338eb4a39ce2c4eec0f9e8f4891b72a (diff) | |
download | ffmpeg-streaming-94b345855f436c26ef80d2ea2d4c68bb146cc96f.zip ffmpeg-streaming-94b345855f436c26ef80d2ea2d4c68bb146cc96f.tar.gz |
vf_settb: remove mathematical constants now redundant.
Signed-off-by: Nicolas George <nicolas.george@normalesup.org>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_settb.c | 9 |
1 files changed, 0 insertions, 9 deletions
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); |