vaapisink: use GST_ERROR to print error messages.
authorGwenole Beauchesne <gwenole.beauchesne@intel.com>
Thu, 8 Dec 2011 13:57:36 +0000 (14:57 +0100)
committerGwenole Beauchesne <gwenole.beauchesne@intel.com>
Thu, 8 Dec 2011 13:57:36 +0000 (14:57 +0100)
gst/vaapi/gstvaapisink.c

index 5c93daa..35c2af3 100644 (file)
@@ -530,12 +530,12 @@ gst_vaapisink_buffer_alloc(
     /* ERRORS */
 error_invalid_caps:
     {
-        GST_DEBUG("failed to validate input caps");
+        GST_ERROR("failed to validate input caps");
         return GST_FLOW_UNEXPECTED;
     }
 error_create_buffer:
     {
-        GST_DEBUG("failed to create video buffer");
+        GST_ERROR("failed to create video buffer");
         return GST_FLOW_UNEXPECTED;
     }
 }