From: Gwenole Beauchesne Date: Wed, 17 Oct 2012 12:52:35 +0000 (+0200) Subject: vaapidecode: fix compiler warnings. X-Git-Tag: submit/2.0alpha/20121130.011817~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d1b583d91db83c3f9d96ae866bca16d8dc8c914;p=profile%2Fivi%2Fgstreamer-vaapi.git 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. --- 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; }