mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
Make avfilter_default_start_frame() request a buffer with the same
size of the output link of the destination filter, rather than of the size of the input link. In particular this fixes a crash in the rotate filter. Originally committed as revision 21238 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ddd60f28d8
commit
b5eab66e9f
@ -72,7 +72,7 @@ void avfilter_default_start_frame(AVFilterLink *link, AVFilterPicRef *picref)
|
||||
out = link->dst->outputs[0];
|
||||
|
||||
if(out) {
|
||||
out->outpic = avfilter_get_video_buffer(out, AV_PERM_WRITE, link->w, link->h);
|
||||
out->outpic = avfilter_get_video_buffer(out, AV_PERM_WRITE, out->w, out->h);
|
||||
out->outpic->pts = picref->pts;
|
||||
avfilter_start_frame(out, avfilter_ref_pic(out->outpic, ~0));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user