msdk: fix typo
authorHyunjun Ko <zzoon@igalia.com>
Tue, 13 Mar 2018 22:18:23 +0000 (14:18 -0800)
committerSreerenj Balachandran <sreerenj.balachandran@intel.com>
Tue, 13 Mar 2018 22:18:23 +0000 (14:18 -0800)
https://bugzilla.gnome.org/show_bug.cgi?id=794276

sys/msdk/gstmsdksystemmemory.c
sys/msdk/gstmsdkvideomemory.c

index a7636c5..b813073 100644 (file)
@@ -165,7 +165,7 @@ gst_msdk_system_memory_new (GstAllocator * base_allocator)
       GST_VIDEO_INFO_SIZE (vip));
 
   if (!ensure_data (mem))
-    return FALSE;
+    return NULL;
 
   return GST_MEMORY_CAST (mem);
 }
@@ -180,13 +180,13 @@ gst_msdk_system_memory_map_full (GstMemory * base_mem, GstMapInfo * info,
 
   if (!mem->surface) {
     GST_WARNING ("The surface is not allocated");
-    return FALSE;
+    return NULL;
   }
 
   if ((info->flags & GST_MAP_WRITE) && mem->surface
       && mem->surface->Data.Locked) {
     GST_WARNING ("The surface in memory %p is not still avaliable", mem);
-    return FALSE;
+    return NULL;
   }
 
   return mem->surface->Data.Y;
index ab02ab9..ced7c96 100644 (file)
@@ -114,7 +114,7 @@ gst_msdk_video_memory_new (GstAllocator * base_allocator)
 
   mem->surface = gst_msdk_video_allocator_get_surface (base_allocator);
   if (!mem->surface)
-    return FALSE;
+    return NULL;
 
   vip = &allocator->image_info;
   gst_memory_init (&mem->parent_instance, GST_MEMORY_FLAG_NO_SHARE,
@@ -228,13 +228,13 @@ gst_msdk_video_memory_map_full (GstMemory * base_mem, GstMapInfo * info,
 
   if (!mem->surface) {
     GST_WARNING ("The surface is not allocated");
-    return FALSE;
+    return NULL;
   }
 
   if ((info->flags & GST_MAP_WRITE) && mem->surface
       && mem->surface->Data.Locked) {
     GST_WARNING ("The surface in memory %p is not still avaliable", mem);
-    return FALSE;
+    return NULL;
   }
 
   gst_msdk_frame_lock (msdk_video_allocator->context, mem->surface->Data.MemId,