From e790722a8403687ab329a7cdedfe828383379805 Mon Sep 17 00:00:00 2001 From: Gwenole Beauchesne Date: Wed, 24 Jul 2013 13:55:04 +0200 Subject: [PATCH] tests: image: fix string representation for GstVideoFormat. --- tests/image.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/image.c b/tests/image.c index 305322b0b5..4155d82651 100644 --- a/tests/image.c +++ b/tests/image.c @@ -338,8 +338,8 @@ image_upload(GstVaapiImage *image, GstVaapiSurface *surface) if (gst_vaapi_surface_put_image(surface, image)) return TRUE; - g_print("could not upload %" GST_FOURCC_FORMAT" image to surface\n", - GST_FOURCC_ARGS(format)); + g_print("could not upload %s image to surface\n", + gst_vaapi_video_format_to_string(format)); if (!gst_vaapi_display_has_subpicture_format(display, format, NULL)) return FALSE;