[FFmpeg-cvslog] avfilter/vf_fspp: Fix frame-alignment in FSPP
Arwa Arif
git at videolan.org
Wed Jan 28 17:24:46 CET 2015
ffmpeg | branch: master | Arwa Arif <arwaarif1994 at gmail.com> | Wed Jan 28 19:51:19 2015 +0530| [622936424c69698159582902534591722ccd58fb] | committer: Michael Niedermayer
avfilter/vf_fspp: Fix frame-alignment in FSPP
Reviewed-by: Paul B Mahol <onemda at gmail.com>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=622936424c69698159582902534591722ccd58fb
---
libavfilter/vf_fspp.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavfilter/vf_fspp.c b/libavfilter/vf_fspp.c
index fe15db0..a4c8a95 100644
--- a/libavfilter/vf_fspp.c
+++ b/libavfilter/vf_fspp.c
@@ -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],
More information about the ffmpeg-cvslog
mailing list