From 7d1b583d91db83c3f9d96ae866bca16d8dc8c914 Mon Sep 17 00:00:00 2001 From: Gwenole Beauchesne Date: Wed, 17 Oct 2012 14:52:35 +0200 Subject: [PATCH] vaapidecode: fix compiler warnings. Don't care of the return value for gst_vaapi_decoder_put_buffer() during destruction of the element. Don't print out (uninitialised) error code when allocation of video buffer failed. --- gst/vaapi/gstvaapidecode.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gst/vaapi/gstvaapidecode.c b/gst/vaapi/gstvaapidecode.c index cd11f36..4d08135 100644 --- a/gst/vaapi/gstvaapidecode.c +++ b/gst/vaapi/gstvaapidecode.c @@ -282,8 +282,8 @@ error_create_buffer: gst_vaapi_surface_get_id(GST_VAAPI_SURFACE_PROXY_SURFACE(proxy)); GST_DEBUG("video sink failed to create video buffer for proxy'ed " - "surface %" GST_VAAPI_ID_FORMAT " (error %d)", - GST_VAAPI_ID_ARGS(surface_id), ret); + "surface %" GST_VAAPI_ID_FORMAT, + GST_VAAPI_ID_ARGS(surface_id)); g_object_unref(proxy); return GST_FLOW_UNEXPECTED; } @@ -367,7 +367,7 @@ static void gst_vaapidecode_destroy(GstVaapiDecode *decode) { if (decode->decoder) { - gst_vaapi_decoder_put_buffer(decode->decoder, NULL); + (void)gst_vaapi_decoder_put_buffer(decode->decoder, NULL); g_object_unref(decode->decoder); decode->decoder = NULL; } -- 2.7.4