From 229e9911cb19272a6a44cb848b2b205b05ba376a Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Mon, 22 Sep 2014 20:01:27 +1000 Subject: [PATCH] gl/tests: update for upload API changes --- tests/check/libs/gstglupload.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/check/libs/gstglupload.c b/tests/check/libs/gstglupload.c index 5ee35da279..fa6210f57b 100644 --- a/tests/check/libs/gstglupload.c +++ b/tests/check/libs/gstglupload.c @@ -235,7 +235,7 @@ GST_START_TEST (test_upload_data) gst_gl_upload_set_format (upload, &in_info); - res = gst_gl_upload_perform_with_data (upload, &tex_id, data); + res = gst_gl_upload_perform_with_data (upload, &tex_id, data, NULL); fail_if (res == FALSE, "Failed to upload buffer: %s\n", gst_gl_context_get_error ()); @@ -269,7 +269,7 @@ GST_START_TEST (test_upload_buffer) gst_gl_upload_set_format (upload, &in_info); - res = gst_gl_upload_perform_with_buffer (upload, buffer, &tex_id); + res = gst_gl_upload_perform_with_buffer (upload, buffer, &tex_id, NULL); fail_if (res == FALSE, "Failed to upload buffer: %s\n", gst_gl_context_get_error ());