mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 13:06:23 +00:00
typefindfunctions: Fix caps for ogg typefinder.
This commit is contained in:
parent
ca216b2d1d
commit
31e7bf098d
1 changed files with 5 additions and 2 deletions
|
@ -2585,8 +2585,10 @@ dv_type_find (GstTypeFind * tf, gpointer private)
|
|||
/*** application/ogg and application/x-annodex ***/
|
||||
static GstStaticCaps ogg_caps = GST_STATIC_CAPS ("application/ogg");
|
||||
static GstStaticCaps annodex_caps = GST_STATIC_CAPS ("application/x-annodex");
|
||||
static GstStaticCaps ogg_annodex_caps =
|
||||
GST_STATIC_CAPS ("application/ogg;application/x-annodex");
|
||||
|
||||
#define OGGANX_CAPS (gst_static_caps_get(&annodex_caps))
|
||||
#define OGGANX_CAPS (gst_static_caps_get(&ogg_annodex_caps))
|
||||
|
||||
static void
|
||||
ogganx_type_find (GstTypeFind * tf, gpointer private)
|
||||
|
@ -2598,7 +2600,8 @@ ogganx_type_find (GstTypeFind * tf, gpointer private)
|
|||
/* Check for an annodex fishbone header */
|
||||
data = gst_type_find_peek (tf, 28, 8);
|
||||
if (data && memcmp (data, "fishead\0", 8) == 0)
|
||||
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, OGGANX_CAPS);
|
||||
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM,
|
||||
gst_static_caps_get (&annodex_caps));
|
||||
|
||||
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM,
|
||||
gst_static_caps_get (&ogg_caps));
|
||||
|
|
Loading…
Reference in a new issue