Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-09-18 23:17:34 +0400
committerPaul B Mahol <onemda@gmail.com>2013-09-18 23:17:34 +0400
commit2e35686030dfad81fdf5404577118fcf7a3a5b27 (patch)
tree1a3bfe4ddd051f28246452723d42e009a93b16e3 /libavfilter/vf_telecine.c
parent7f4a5006cee50c15994c52969baa6067b9afd5bc (diff)
avfilter/vf_telecine: remove redudant av_frame_copy_props()
It is already called by av_frame_clone(). Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_telecine.c')
-rw-r--r--libavfilter/vf_telecine.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/vf_telecine.c b/libavfilter/vf_telecine.c
index 931d6ba8bf..2ed0ecfc1a 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);
}