meta: Fix compilation of the unit test after removal of the serialize/deserialize functions

This commit is contained in:
Sebastian Dröge 2011-05-13 08:38:06 +02:00
parent 9339a59583
commit 54fd068aba

View file

@ -118,8 +118,7 @@ gst_meta_test_get_info (void)
sizeof (GstMetaTest), sizeof (GstMetaTest),
(GstMetaInitFunction) test_init_func, (GstMetaInitFunction) test_init_func,
(GstMetaFreeFunction) test_free_func, (GstMetaFreeFunction) test_free_func,
(GstMetaCopyFunction) test_copy_func, (GstMetaCopyFunction) test_copy_func, (GstMetaTransformFunction) NULL);
(GstMetaTransformFunction) NULL, NULL, NULL);
} }
return meta_test_info; return meta_test_info;
} }