mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-18 21:45:10 +00:00
In yadif filter, use current frame when previous is missing,
better results for the first frame Originally committed as revision 25202 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b9f9e59afc
commit
48f7f29f52
@ -197,13 +197,12 @@ static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
|
||||
yadif->cur = yadif->next;
|
||||
yadif->next = picref;
|
||||
|
||||
if (!yadif->prev)
|
||||
yadif->prev = avfilter_get_video_buffer(link, AV_PERM_WRITE | AV_PERM_PRESERVE |
|
||||
AV_PERM_REUSE, link->w, link->h);
|
||||
|
||||
if(!yadif->cur)
|
||||
return;
|
||||
|
||||
if (!yadif->prev)
|
||||
yadif->prev = avfilter_ref_buffer(yadif->cur, AV_PERM_READ);
|
||||
|
||||
yadif->out = avfilter_get_video_buffer(ctx->outputs[0], AV_PERM_WRITE | AV_PERM_PRESERVE |
|
||||
AV_PERM_REUSE, link->w, link->h);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user