mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
In crop filter, reference picref after updating w/h, fix issue #2377
Originally committed as revision 25818 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
16d14d641c
commit
3ff9995350
@ -237,12 +237,14 @@ static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
|
||||
{
|
||||
AVFilterContext *ctx = link->dst;
|
||||
CropContext *crop = ctx->priv;
|
||||
AVFilterBufferRef *ref2 = avfilter_ref_buffer(picref, ~0);
|
||||
AVFilterBufferRef *ref2;
|
||||
int i;
|
||||
|
||||
picref->video->w = crop->w;
|
||||
picref->video->h = crop->h;
|
||||
|
||||
ref2 = avfilter_ref_buffer(picref, ~0);
|
||||
|
||||
crop->var_values[VAR_T] = picref->pts == AV_NOPTS_VALUE ?
|
||||
NAN : picref->pts * av_q2d(link->time_base);
|
||||
crop->var_values[VAR_POS] = picref->pos == -1 ? NAN : picref->pos;
|
||||
|
Loading…
Reference in New Issue
Block a user