diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-12-03 21:47:01 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-12-03 21:47:03 +0100 |
commit | b5eb630e216cd997050744aca0864012d5e1f7c9 (patch) | |
tree | 83052ad400e79ba418828c99ab6ad5e3c6978ab0 /libavfilter/vf_gradfun.c | |
parent | d91388367fa64b98a09b45e2b7fb8435a62b7609 (diff) | |
download | ffmpeg-b5eb630e216cd997050744aca0864012d5e1f7c9.tar.gz |
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_gradfun.c')
-rw-r--r-- | libavfilter/vf_gradfun.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/vf_gradfun.c b/libavfilter/vf_gradfun.c index 32d8796071..a9eeca54f2 100644 --- a/libavfilter/vf_gradfun.c +++ b/libavfilter/vf_gradfun.c @@ -198,10 +198,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 (p = 0; p < 4 && in->data[p]; p++) { |