diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-12-12 01:41:33 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-12-12 02:00:04 +0100 |
commit | 5172782352118c72060187296d411e38e3df9d34 (patch) | |
tree | 13ddaabfdad8a7d26ce31d606caefe005d9aac69 | |
parent | d2d8ac24b8437121c2a36ca41bb141e9acdeeed7 (diff) | |
download | ffmpeg-5172782352118c72060187296d411e38e3df9d34.tar.gz |
avfilter/vf_uspp: The qp array width is qp_stride not stride/16
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_uspp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_uspp.c b/libavfilter/vf_uspp.c index fd07eb9a56..8352a12d16 100644 --- a/libavfilter/vf_uspp.c +++ b/libavfilter/vf_uspp.c @@ -379,7 +379,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) w = FF_CEIL_RSHIFT(inlink->w, 4); h = 1; } else { - w = FF_CEIL_RSHIFT(qp_stride, 4); + w = qp_stride; h = FF_CEIL_RSHIFT(inlink->h, 4); } |