mirror of https://git.ffmpeg.org/ffmpeg.git
100L, fix vf_scale, since copy_ref_props now copy w and h, we must update them
Originally committed as revision 24781 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6ef14e5753
commit
e4cc9f208d
|
@ -153,6 +153,8 @@ static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
|
|||
|
||||
outpicref = avfilter_get_video_buffer(outlink, AV_PERM_WRITE, outlink->w, outlink->h);
|
||||
avfilter_copy_buffer_ref_props(outpicref, picref);
|
||||
outpicref->video->w = outlink->w;
|
||||
outpicref->video->h = outlink->h;
|
||||
|
||||
outlink->out_buf = outpicref;
|
||||
|
||||
|
|
Loading…
Reference in New Issue