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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2016-03-13 21:23:05 +0300
committerPaul B Mahol <onemda@gmail.com>2016-03-13 21:23:44 +0300
commit80974559294f16623031268cc6a8fb28038e3c1a (patch)
tree7856e166bff6e3445ba0dcb2d8ca0c7a698cb7e5 /libavfilter
parent7c93f2c0b940e07c2a1fd0fb8f7ffc94dcfdb1aa (diff)
avfilter/vf_vectorscope: copy frame props, mainly for bench filter
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_vectorscope.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_vectorscope.c b/libavfilter/vf_vectorscope.c
index da087abc46..79bf0df9c1 100644
--- a/libavfilter/vf_vectorscope.c
+++ b/libavfilter/vf_vectorscope.c
@@ -1215,7 +1215,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
av_frame_free(&in);
return AVERROR(ENOMEM);
}
- out->pts = in->pts;
+ av_frame_copy_props(out, in);
s->vectorscope(s, in, out, s->pd);
s->graticulef(s, out, s->x, s->y, s->pd, s->cs);