GNOME Bugzilla – Bug 636337
gsttypefindfunctions.c doesn't contain vp8_video_type_find() function body
Last modified: 2010-12-03 02:54:43 UTC
Dear Sir, I would like to add the following code in plugin_init() function body of gsttypefindfunctions.c static gboolean plugin_init (GstPlugin * plugin) { ... // added for WebM container with VP8 codec TYPE_FIND_REGISTER (plugin, "video/x-vp8", GST_RANK_PRIMARY, vp8_video_type_find, vp8_exts, VP8_VIDEO_CAPS, NULL, NULL); ... } But unfortunately I can't find any function that can find VP8 codec type. Sunshine_uyl
VP8 isn't a format that can be detected, or used outside of a container that is aware of the format. So a typefind function is neither possible nor necessary.