[FFmpeg-cvslog] avfilter/vf_aspect: remove dupe constants setup
Paul B Mahol
git at videolan.org
Sun Nov 3 17:44:00 CET 2013
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sun Nov 3 16:39:22 2013 +0000| [3d9fc5c6ad31634aaf0f1621ddaa0b83b49fcb36] | committer: Paul B Mahol
avfilter/vf_aspect: remove dupe constants setup
Signed-off-by: Paul B Mahol <onemda at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3d9fc5c6ad31634aaf0f1621ddaa0b83b49fcb36
---
libavfilter/vf_aspect.c | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/libavfilter/vf_aspect.c b/libavfilter/vf_aspect.c
index eaece16..97fb216 100644
--- a/libavfilter/vf_aspect.c
+++ b/libavfilter/vf_aspect.c
@@ -37,9 +37,6 @@
#include "video.h"
static const char *const var_names[] = {
- "PI",
- "PHI",
- "E",
"w",
"h",
"a", "dar",
@@ -50,9 +47,6 @@ static const char *const var_names[] = {
};
enum var_name {
- VAR_PI,
- VAR_PHI,
- VAR_E,
VAR_W,
VAR_H,
VAR_A, VAR_DAR,
@@ -124,9 +118,6 @@ static int get_aspect_ratio(AVFilterLink *inlink, AVRational *aspect_ratio)
double var_values[VARS_NB], res;
int ret;
- var_values[VAR_PI] = M_PI;
- var_values[VAR_PHI] = M_PHI;
- var_values[VAR_E] = M_E;
var_values[VAR_W] = inlink->w;
var_values[VAR_H] = inlink->h;
var_values[VAR_A] = (double) inlink->w / inlink->h;
More information about the ffmpeg-cvslog
mailing list