msdkenc: return NULL instead of FALSE
authorHaihao Xiang <haihao.xiang@intel.com>
Wed, 9 Jan 2019 01:49:16 +0000 (09:49 +0800)
committerHaihao Xiang <haihao.xiang@intel.com>
Wed, 9 Jan 2019 01:50:49 +0000 (09:50 +0800)
The returned type is a pointer

sys/msdk/gstmsdkenc.c

index 6f90249..5189904 100644 (file)
@@ -901,7 +901,7 @@ gst_msdkenc_create_buffer_pool (GstMsdkEnc * thiz, GstCaps * caps,
 
   if (!gst_video_info_from_caps (&info, caps)) {
     GST_INFO_OBJECT (thiz, "failed to get video info");
-    return FALSE;
+    return NULL;
   }
 
   gst_msdk_set_video_alignment (&info, &align);
@@ -947,20 +947,20 @@ gst_msdkenc_create_buffer_pool (GstMsdkEnc * thiz, GstCaps * caps,
 error_no_pool:
   {
     GST_INFO_OBJECT (thiz, "failed to create bufferpool");
-    return FALSE;
+    return NULL;
   }
 error_no_allocator:
   {
     GST_INFO_OBJECT (thiz, "failed to create allocator");
     gst_object_unref (pool);
-    return FALSE;
+    return NULL;
   }
 error_pool_config:
   {
     GST_INFO_OBJECT (thiz, "failed to set config");
     gst_object_unref (pool);
     gst_object_unref (allocator);
-    return FALSE;
+    return NULL;
   }
 }