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:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-17 06:33:21 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-17 20:12:45 +0300
commit90550856e5182487bdfbb0527110e4b94ac5ec0f (patch)
tree89f12ab21fac286fbb0d2484f531d8ca5cf56565 /libavfilter/avfilter.c
parent8c53b14599330f08859082c868d7df559e9385e5 (diff)
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.c1
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++) {