[FFmpeg-cvslog] avfilter/vf_waveform: copy props from input frame
Paul B Mahol
git at videolan.org
Fri Apr 8 19:52:14 EEST 2022
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Fri Apr 8 18:40:42 2022 +0200| [5a9de38e54419d459d242aaac3a6218d8877f9fd] | committer: Paul B Mahol
avfilter/vf_waveform: copy props from input frame
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5a9de38e54419d459d242aaac3a6218d8877f9fd
---
libavfilter/vf_waveform.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavfilter/vf_waveform.c b/libavfilter/vf_waveform.c
index d0fd00ebf4..37eb0679d0 100644
--- a/libavfilter/vf_waveform.c
+++ b/libavfilter/vf_waveform.c
@@ -3399,8 +3399,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
av_frame_free(&in);
return AVERROR(ENOMEM);
}
- out->pts = in->pts;
- out->color_range = AVCOL_RANGE_JPEG;
for (k = 0; k < s->dcomp; k++) {
if (s->bits <= 8) {
@@ -3484,6 +3482,8 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
}
s->graticulef(s, out);
+ av_frame_copy_props(out, in);
+ out->color_range = AVCOL_RANGE_JPEG;
av_frame_free(&in);
out->sample_aspect_ratio = outlink->sample_aspect_ratio;
return ff_filter_frame(outlink, out);
More information about the ffmpeg-cvslog
mailing list