diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-07-04 11:15:14 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-28 08:03:30 +0200 |
commit | 80de930a781c177dc54f3836f57aa8959597bcda (patch) | |
tree | 1d12c98e3091f0277cc5581007821cce61f912a2 /libavfilter | |
parent | 46b29397a658805118e920167dcfe1bf60573e53 (diff) | |
download | ffmpeg-80de930a781c177dc54f3836f57aa8959597bcda.tar.gz |
vf_pad: fix "vsub" variable value computation
It was shifting 2 rather than 1, +10l.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_pad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_pad.c b/libavfilter/vf_pad.c index 27440d842f..9ba91ed21c 100644 --- a/libavfilter/vf_pad.c +++ b/libavfilter/vf_pad.c @@ -158,7 +158,7 @@ static int config_input(AVFilterLink *inlink) var_values[VAR_OUT_H] = var_values[VAR_OH] = NAN; var_values[VAR_A] = (float) inlink->w / inlink->h; var_values[VAR_HSUB] = 1<<pad->hsub; - var_values[VAR_VSUB] = 2<<pad->vsub; + var_values[VAR_VSUB] = 1<<pad->vsub; /* evaluate width and height */ av_expr_parse_and_eval(&res, (expr = pad->w_expr), |