-base: remove metadata (des)serialize functions

This commit is contained in:
Wim Taymans 2011-05-11 19:12:42 +02:00
parent c9f4e0676b
commit c81b1b8019
5 changed files with 5 additions and 14 deletions

View file

@ -55,8 +55,7 @@ gst_meta_net_address_get_info (void)
(GstMetaInitFunction) NULL, (GstMetaInitFunction) NULL,
(GstMetaFreeFunction) NULL, (GstMetaFreeFunction) NULL,
(GstMetaCopyFunction) meta_net_address_copy, (GstMetaCopyFunction) meta_net_address_copy,
(GstMetaTransformFunction) NULL, (GstMetaTransformFunction) NULL);
(GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
} }
return meta_info; return meta_info;
} }

View file

@ -30,9 +30,7 @@ gst_meta_video_get_info (void)
sizeof (GstMetaVideo), sizeof (GstMetaVideo),
(GstMetaInitFunction) NULL, (GstMetaInitFunction) NULL,
(GstMetaFreeFunction) NULL, (GstMetaFreeFunction) NULL,
(GstMetaCopyFunction) NULL, (GstMetaCopyFunction) NULL, (GstMetaTransformFunction) NULL);
(GstMetaTransformFunction) NULL,
(GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
} }
return meta_video_info; return meta_video_info;
} }

View file

@ -657,9 +657,7 @@ gst_meta_v4lsrc_get_info (void)
sizeof (GstMetaV4lSrc), sizeof (GstMetaV4lSrc),
(GstMetaInitFunction) NULL, (GstMetaInitFunction) NULL,
(GstMetaFreeFunction) meta_v4lsrc_free, (GstMetaFreeFunction) meta_v4lsrc_free,
(GstMetaCopyFunction) NULL, (GstMetaCopyFunction) NULL, (GstMetaTransformFunction) NULL);
(GstMetaTransformFunction) NULL,
(GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
} }
return meta_v4lsrc_info; return meta_v4lsrc_info;
} }

View file

@ -43,9 +43,7 @@ gst_meta_ximage_get_info (void)
sizeof (GstMetaXImage), sizeof (GstMetaXImage),
(GstMetaInitFunction) NULL, (GstMetaInitFunction) NULL,
(GstMetaFreeFunction) gst_meta_ximage_free, (GstMetaFreeFunction) gst_meta_ximage_free,
(GstMetaCopyFunction) NULL, (GstMetaCopyFunction) NULL, (GstMetaTransformFunction) NULL);
(GstMetaTransformFunction) NULL,
(GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
} }
return meta_ximage_info; return meta_ximage_info;
} }

View file

@ -43,9 +43,7 @@ gst_meta_xvimage_get_info (void)
sizeof (GstMetaXvImage), sizeof (GstMetaXvImage),
(GstMetaInitFunction) NULL, (GstMetaInitFunction) NULL,
(GstMetaFreeFunction) gst_meta_xvimage_free, (GstMetaFreeFunction) gst_meta_xvimage_free,
(GstMetaCopyFunction) NULL, (GstMetaCopyFunction) NULL, (GstMetaTransformFunction) NULL);
(GstMetaTransformFunction) NULL,
(GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
} }
return meta_xvimage_info; return meta_xvimage_info;
} }