Browse Source

vf_scale_vaapi: Apply cropping rectangle to input

tags/n4.0
Mark Thompson 7 years ago
parent
commit
abf35afb6f
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      libavfilter/vf_scale_vaapi.c

+ 6
- 6
libavfilter/vf_scale_vaapi.c View File

@@ -100,13 +100,13 @@ static int scale_vaapi_filter_frame(AVFilterLink *inlink, AVFrame *input_frame)

memset(&params, 0, sizeof(params));

// If there were top/left cropping, it could be taken into
// account here.
input_region = (VARectangle) {
.x = 0,
.y = 0,
.width = input_frame->width,
.height = input_frame->height,
.x = input_frame->crop_left,
.y = input_frame->crop_top,
.width = input_frame->width -
(input_frame->crop_left + input_frame->crop_right),
.height = input_frame->height -
(input_frame->crop_top + input_frame->crop_bottom),
};

params.surface = input_surface;


Loading…
Cancel
Save