diff mbox series

[FFmpeg-devel] avfilter/[vf_nnedi, vf_estdif]: Check interlaced flag on correct frame

Message ID 20210504190459.2380-1-kasper93@gmail.com
State Accepted
Commit b7e350af3e8eaeb4825646a4bcef7fa051bd0a73
Headers show
Series [FFmpeg-devel] avfilter/[vf_nnedi, vf_estdif]: Check interlaced flag on correct frame | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

Kacper Michajłow May 4, 2021, 7:04 p.m. UTC
Fixes regression in vf_nnedi after
24dc6d386c6f7edb8f6945319f53a7f0b1642bb8 and vf_estdif while at it.

Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
---
 libavfilter/vf_estdif.c | 2 +-
 libavfilter/vf_nnedi.c  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Comments

Paul B Mahol July 16, 2021, 7:23 a.m. UTC | #1
applied
diff mbox series

Patch

diff --git a/libavfilter/vf_estdif.c b/libavfilter/vf_estdif.c
index 9dda604d3c..900e28ce67 100644
--- a/libavfilter/vf_estdif.c
+++ b/libavfilter/vf_estdif.c
@@ -500,7 +500,7 @@  static int config_input(AVFilterLink *inlink)
         return 0;
     }
 
-    if ((s->deint && !in->interlaced_frame) || ctx->is_disabled) {
+    if ((s->deint && !s->prev->interlaced_frame) || ctx->is_disabled) {
         s->prev->pts *= 2;
         ret = ff_filter_frame(ctx->outputs[0], s->prev);
         s->prev = in;
diff --git a/libavfilter/vf_nnedi.c b/libavfilter/vf_nnedi.c
index 6096e88812..686091ac8d 100644
--- a/libavfilter/vf_nnedi.c
+++ b/libavfilter/vf_nnedi.c
@@ -695,7 +695,7 @@  static int filter_frame(AVFilterLink *inlink, AVFrame *in)
         return 0;
     }
 
-    if ((s->deint && !in->interlaced_frame) || ctx->is_disabled) {
+    if ((s->deint && !s->prev->interlaced_frame) || ctx->is_disabled) {
         s->prev->pts *= 2;
         ret = ff_filter_frame(ctx->outputs[0], s->prev);
         s->prev = in;