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:
authorClément Bœsch <ubitux@gmail.com>2012-12-04 00:47:01 +0400
committerClément Bœsch <ubitux@gmail.com>2012-12-04 00:47:03 +0400
commitb5eb630e216cd997050744aca0864012d5e1f7c9 (patch)
tree83052ad400e79ba418828c99ab6ad5e3c6978ab0 /libavfilter/vf_hqdn3d.c
parentd91388367fa64b98a09b45e2b7fb8435a62b7609 (diff)
lavfi: remove some video w/h settings after avfilter_copy_buffer_ref_props.
video->[wh] will be set with the same values as the input after avfilter_copy_buffer_ref_props. These filters don't change the size of the input so there is no need for this code.
Diffstat (limited to 'libavfilter/vf_hqdn3d.c')
-rw-r--r--libavfilter/vf_hqdn3d.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/vf_hqdn3d.c b/libavfilter/vf_hqdn3d.c
index 939a31df28..4ea4ac9aa0 100644
--- a/libavfilter/vf_hqdn3d.c
+++ b/libavfilter/vf_hqdn3d.c
@@ -338,10 +338,7 @@ static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *in)
avfilter_unref_bufferp(&in);
return AVERROR(ENOMEM);
}
-
avfilter_copy_buffer_ref_props(out, in);
- out->video->w = outlink->w;
- out->video->h = outlink->h;
}
for (c = 0; c < 3; c++) {