[FFmpeg-cvslog] avfilter/vf_telecine: remove redudant av_frame_copy_props()

Paul B Mahol git at videolan.org
Wed Sep 18 21:25:00 CEST 2013


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Wed Sep 18 19:17:34 2013 +0000| [2e35686030dfad81fdf5404577118fcf7a3a5b27] | committer: Paul B Mahol

avfilter/vf_telecine: remove redudant av_frame_copy_props()

It is already called by av_frame_clone().

Signed-off-by: Paul B Mahol <onemda at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2e35686030dfad81fdf5404577118fcf7a3a5b27
---

 libavfilter/vf_telecine.c |    1 -
 1 file changed, 1 deletion(-)

diff --git a/libavfilter/vf_telecine.c b/libavfilter/vf_telecine.c
index 931d6ba..2ed0ecf 100644
--- a/libavfilter/vf_telecine.c
+++ b/libavfilter/vf_telecine.c
@@ -235,7 +235,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
             return AVERROR(ENOMEM);
         }
 
-        av_frame_copy_props(frame, inpicref);
         frame->pts = outlink->frame_count * tc->ts_unit;
         ret = ff_filter_frame(outlink, frame);
     }



More information about the ffmpeg-cvslog mailing list