After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 636337 - gsttypefindfunctions.c doesn't contain vp8_video_type_find() function body
gsttypefindfunctions.c doesn't contain vp8_video_type_find() function body
Status: RESOLVED NOTABUG
Product: GStreamer
Classification: Platform
Component: gst-plugins-base
0.10.30
Other Linux
: Normal normal
: git master
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2010-12-03 01:56 UTC by sunshine_uyl
Modified: 2010-12-03 02:54 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description sunshine_uyl 2010-12-03 01:56:41 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
Comment 1 David Schleef 2010-12-03 02:54:43 UTC
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.