From c5756a91575fa4d93aa8c6c58be97ca732ce530b Mon Sep 17 00:00:00 2001 From: Gwenole Beauchesne Date: Tue, 12 May 2015 16:04:33 +0200 Subject: [PATCH] tests: simple-encoder: fix build warnings on 64-bit platforms. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Add a cosmetic change to replace VAAPI buffer with VA buffer and most importantly fix warnings spitted out during build on 64-bit platforms. ../../tests/simple-encoder.c:211:5: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘gssize’ [-Wformat=] g_warning ("Invalid VAAPI buffer size (%d)", size); ^ ../../tests/simple-encoder.c:217:5: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘gssize’ [-Wformat=] g_warning ("Failed to create output buffer of size %d", size); ^ --- tests/simple-encoder.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/simple-encoder.c b/tests/simple-encoder.c index 1a6f32c..ff9ddcb 100644 --- a/tests/simple-encoder.c +++ b/tests/simple-encoder.c @@ -208,18 +208,18 @@ allocate_buffer (GstVaapiCodedBuffer * vbuf) size = gst_vaapi_coded_buffer_get_size (vbuf); if (size <= 0) { - g_warning ("Invalid VAAPI buffer size (%d)", size); + g_warning ("Invalid VA buffer size (%zd)", size); return NULL; } buf = gst_buffer_new_and_alloc (size); if (!buf) { - g_warning ("Failed to create output buffer of size %d", size); + g_warning ("Failed to create output buffer of size %zd", size); return NULL; } if (!gst_vaapi_coded_buffer_copy_into (buf, vbuf)) { - g_warning ("Failed to copy VAAPI buffer data"); + g_warning ("Failed to copy VA buffer data"); gst_buffer_unref (buf); return NULL; } -- 2.7.4