avfilter/vf_fspp: Fix frame-alignment in FSPP
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
fca50464dc
commit
622936424c
@ -626,6 +626,8 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
av_frame_copy_props(out, in);
|
||||
out->width = in->width;
|
||||
out->height = in->height;
|
||||
}
|
||||
|
||||
filter(fspp, out->data[0], in->data[0], out->linesize[0], in->linesize[0],
|
||||
|
Loading…
Reference in New Issue
Block a user