mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-24 07:46:56 +00:00
avfilter/vf_uspp: Fix currently unused input frame dimensions
Found-by: Nicolas Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 942036e97c8b149ce2f3ec6e7cbc990df8713d0c) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
89a2384828
commit
fa3bbd77c1
@ -228,8 +228,8 @@ static void filter(USPPContext *p, uint8_t *dst[3], uint8_t *src[3],
|
||||
p->frame->quality = ff_norm_qscale((qpsum + qpcount/2) / qpcount, p->qscale_type) * FF_QP2LAMBDA;
|
||||
}
|
||||
// init per MB qscale stuff FIXME
|
||||
p->frame->height = height;
|
||||
p->frame->width = width;
|
||||
p->frame->height = height + BLOCK;
|
||||
p->frame->width = width + BLOCK;
|
||||
|
||||
for (i = 0; i < count; i++) {
|
||||
const int x1 = offset[i+count-1][0];
|
||||
|
Loading…
Reference in New Issue
Block a user