From: Sven Baars sbaars@codeweavers.com
--- dlls/winegstreamer/wg_transform.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/winegstreamer/wg_transform.c b/dlls/winegstreamer/wg_transform.c index 558f6572a1b..33758401a06 100644 --- a/dlls/winegstreamer/wg_transform.c +++ b/dlls/winegstreamer/wg_transform.c @@ -834,8 +834,8 @@ NTSTATUS wg_transform_push_data(void *args) return STATUS_SUCCESS; }
-static NTSTATUS copy_video_buffer(GstBuffer *buffer, const GstVideoInfo *src_video_info, - const GstVideoInfo *dst_video_info, struct wg_sample *sample, gsize *total_size) +static NTSTATUS copy_video_buffer(GstBuffer *buffer, GstVideoInfo *src_video_info, + GstVideoInfo *dst_video_info, struct wg_sample *sample, gsize *total_size) { NTSTATUS status = STATUS_UNSUCCESSFUL; GstVideoFrame src_frame, dst_frame; @@ -946,7 +946,7 @@ static bool sample_needs_buffer_copy(struct wg_sample *sample, GstBuffer *buffer }
static NTSTATUS read_transform_output_video(struct wg_sample *sample, GstBuffer *buffer, - const GstVideoInfo *src_video_info, const GstVideoInfo *dst_video_info) + GstVideoInfo *src_video_info, GstVideoInfo *dst_video_info) { gsize total_size; NTSTATUS status;
This merge request was approved by Rémi Bernon.