mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-04-04 00:11:33 +00:00
vf_aspect: clear AVFilterLink.cur_buf in start_frame().
The buffer is passed on to the next filter, so we shouldn't keep any pointers to it.
This commit is contained in:
parent
b70d89a033
commit
51a8049be8
@ -69,6 +69,7 @@ static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
|
|||||||
AspectContext *aspect = link->dst->priv;
|
AspectContext *aspect = link->dst->priv;
|
||||||
|
|
||||||
picref->video->pixel_aspect = aspect->aspect;
|
picref->video->pixel_aspect = aspect->aspect;
|
||||||
|
link->cur_buf = NULL;
|
||||||
ff_start_frame(link->dst->outputs[0], picref);
|
ff_start_frame(link->dst->outputs[0], picref);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user