[FFmpeg-cvslog] vf_interlace: do not process an already interlaced frame
Vittorio Giovara
git at videolan.org
Thu Oct 3 11:53:59 CEST 2013
ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Tue Oct 1 19:08:03 2013 +0200| [06e7301a2efa8dededecbe6836ee5b59bf7e5e76] | committer: Anton Khirnov
vf_interlace: do not process an already interlaced frame
Signed-off-by: Anton Khirnov <anton at khirnov.net>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=06e7301a2efa8dededecbe6836ee5b59bf7e5e76
---
libavfilter/vf_interlace.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/libavfilter/vf_interlace.c b/libavfilter/vf_interlace.c
index d654739..139d5b0 100644
--- a/libavfilter/vf_interlace.c
+++ b/libavfilter/vf_interlace.c
@@ -181,6 +181,16 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
if (!s->cur || !s->next)
return 0;
+ if (s->cur->interlaced_frame) {
+ av_log(ctx, AV_LOG_WARNING,
+ "video is already interlaced, adjusting framerate only\n");
+ out = av_frame_clone(s->cur);
+ out->pts /= 2; // adjust pts to new framerate
+ ret = ff_filter_frame(outlink, out);
+ s->got_output = 1;
+ return ret;
+ }
+
tff = (s->scan == MODE_TFF);
out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
if (!out)
More information about the ffmpeg-cvslog
mailing list