diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-17 05:33:21 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-17 19:12:45 +0200 |
commit | 90550856e5182487bdfbb0527110e4b94ac5ec0f (patch) | |
tree | 89f12ab21fac286fbb0d2484f531d8ca5cf56565 /libavfilter/avfilter.c | |
parent | 8c53b14599330f08859082c868d7df559e9385e5 (diff) | |
download | ffmpeg-90550856e5182487bdfbb0527110e4b94ac5ec0f.tar.gz |
avfilter/avfilter: Remove redundant assignment
av_frame_copy_props() already copies pts.
Reviewed-by: Nicolas George <george@nsup.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 843b5947e5..cc24a6ed21 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -1068,7 +1068,6 @@ static int take_samples(AVFilterLink *link, unsigned min, unsigned max, av_frame_free(&buf); return ret; } - buf->pts = frame0->pts; p = 0; for (i = 0; i < nb_frames; i++) { |