Browse Source

vf_fieldorder: log when processing is skipped

Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
tags/n2.1
Vittorio Giovara Luca Barbato 11 years ago
parent
commit
00d7369de0
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      libavfilter/vf_fieldorder.c

+ 6
- 1
libavfilter/vf_fieldorder.c View File

@@ -101,8 +101,13 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
uint8_t *data;

if (!frame->interlaced_frame ||
frame->top_field_first == s->dst_tff)
frame->top_field_first == s->dst_tff) {
av_log(ctx, AV_LOG_VERBOSE,
"Skipping %s.\n",
frame->interlaced_frame ?
"frame with same field order" : "progressive frame");
return ff_filter_frame(outlink, frame);
}

av_dlog(ctx,
"picture will move %s one line\n",


Loading…
Cancel
Save