-base: remove metadata (des)serialize functions
authorWim Taymans <wim.taymans@collabora.co.uk>
Wed, 11 May 2011 17:12:42 +0000 (19:12 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Wed, 11 May 2011 17:12:42 +0000 (19:12 +0200)
gst-libs/gst/netbuffer/gstnetbuffer.c
gst-libs/gst/video/gstmetavideo.c
sys/v4l/v4lsrc_calls.c
sys/ximage/ximagepool.c
sys/xvimage/xvimagepool.c

index 78c6643..aaea75a 100644 (file)
@@ -55,8 +55,7 @@ gst_meta_net_address_get_info (void)
         (GstMetaInitFunction) NULL,
         (GstMetaFreeFunction) NULL,
         (GstMetaCopyFunction) meta_net_address_copy,
-        (GstMetaTransformFunction) NULL,
-        (GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
+        (GstMetaTransformFunction) NULL);
   }
   return meta_info;
 }
index 9dd4f2d..a1be58b 100644 (file)
@@ -30,9 +30,7 @@ gst_meta_video_get_info (void)
         sizeof (GstMetaVideo),
         (GstMetaInitFunction) NULL,
         (GstMetaFreeFunction) NULL,
-        (GstMetaCopyFunction) NULL,
-        (GstMetaTransformFunction) NULL,
-        (GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
+        (GstMetaCopyFunction) NULL, (GstMetaTransformFunction) NULL);
   }
   return meta_video_info;
 }
index c4d957c..8c74638 100644 (file)
@@ -657,9 +657,7 @@ gst_meta_v4lsrc_get_info (void)
         sizeof (GstMetaV4lSrc),
         (GstMetaInitFunction) NULL,
         (GstMetaFreeFunction) meta_v4lsrc_free,
-        (GstMetaCopyFunction) NULL,
-        (GstMetaTransformFunction) NULL,
-        (GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
+        (GstMetaCopyFunction) NULL, (GstMetaTransformFunction) NULL);
   }
   return meta_v4lsrc_info;
 }
index 6498888..b6edc3b 100644 (file)
@@ -43,9 +43,7 @@ gst_meta_ximage_get_info (void)
         sizeof (GstMetaXImage),
         (GstMetaInitFunction) NULL,
         (GstMetaFreeFunction) gst_meta_ximage_free,
-        (GstMetaCopyFunction) NULL,
-        (GstMetaTransformFunction) NULL,
-        (GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
+        (GstMetaCopyFunction) NULL, (GstMetaTransformFunction) NULL);
   }
   return meta_ximage_info;
 }
index e320f55..e5fafd3 100644 (file)
@@ -43,9 +43,7 @@ gst_meta_xvimage_get_info (void)
         sizeof (GstMetaXvImage),
         (GstMetaInitFunction) NULL,
         (GstMetaFreeFunction) gst_meta_xvimage_free,
-        (GstMetaCopyFunction) NULL,
-        (GstMetaTransformFunction) NULL,
-        (GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
+        (GstMetaCopyFunction) NULL, (GstMetaTransformFunction) NULL);
   }
   return meta_xvimage_info;
 }