-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,
(GstMetaFreeFunction) NULL,
(GstMetaCopyFunction) meta_net_address_copy,
(GstMetaTransformFunction) NULL,
(GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
(GstMetaTransformFunction) NULL);
}
return meta_info;
}

View 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;
}

View 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;
}

View 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;
}

View 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;
}