mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
typefindfunctions: Add IVF typefinder
This commit is contained in:
parent
33b5172822
commit
760ae91ec3
1 changed files with 3 additions and 0 deletions
|
@ -3730,6 +3730,7 @@ plugin_init (GstPlugin * plugin)
|
||||||
static const gchar *ps_exts[] = { "ps", NULL };
|
static const gchar *ps_exts[] = { "ps", NULL };
|
||||||
static const gchar *svg_exts[] = { "svg", NULL };
|
static const gchar *svg_exts[] = { "svg", NULL };
|
||||||
static const gchar *mxf_exts[] = { "mxf", NULL };
|
static const gchar *mxf_exts[] = { "mxf", NULL };
|
||||||
|
static const gchar *ivf_exts[] = { "ivf", NULL };
|
||||||
static const gchar *msword_exts[] = { "doc", NULL };
|
static const gchar *msword_exts[] = { "doc", NULL };
|
||||||
static const gchar *dsstore_exts[] = { "DS_Store", NULL };
|
static const gchar *dsstore_exts[] = { "DS_Store", NULL };
|
||||||
static const gchar *psd_exts[] = { "psd", NULL };
|
static const gchar *psd_exts[] = { "psd", NULL };
|
||||||
|
@ -3973,6 +3974,8 @@ plugin_init (GstPlugin * plugin)
|
||||||
TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-sap",
|
TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-sap",
|
||||||
GST_RANK_SECONDARY, sap_exts, "SAP\x0d\x0aAUTHOR\x20", 12,
|
GST_RANK_SECONDARY, sap_exts, "SAP\x0d\x0aAUTHOR\x20", 12,
|
||||||
GST_TYPE_FIND_MAXIMUM);
|
GST_TYPE_FIND_MAXIMUM);
|
||||||
|
TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-ivf", GST_RANK_SECONDARY,
|
||||||
|
ivf_exts, "DKIF", 4, GST_TYPE_FIND_NEARLY_CERTAIN);
|
||||||
TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-kss", GST_RANK_SECONDARY,
|
TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-kss", GST_RANK_SECONDARY,
|
||||||
kss_exts, "KSSX\0", 5, GST_TYPE_FIND_MAXIMUM);
|
kss_exts, "KSSX\0", 5, GST_TYPE_FIND_MAXIMUM);
|
||||||
TYPE_FIND_REGISTER_START_WITH (plugin, "application/pdf", GST_RANK_SECONDARY,
|
TYPE_FIND_REGISTER_START_WITH (plugin, "application/pdf", GST_RANK_SECONDARY,
|
||||||
|
|
Loading…
Reference in a new issue