mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-16 13:26:36 +00:00
gst/typefind/gsttypefindfunctions.c: Add some typefind for QCP files (RFC #3625)
Original commit message from CVS: 2007-09-14 Julien MOUTTE <julien@moutte.net> * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add some typefind for QCP files (RFC #3625)
This commit is contained in:
parent
4764e6044f
commit
87f2e70427
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-09-14 Julien MOUTTE <julien@moutte.net>
|
||||||
|
|
||||||
|
* gst/typefind/gsttypefindfunctions.c: (plugin_init): Add some
|
||||||
|
typefind for QCP files (RFC #3625)
|
||||||
|
|
||||||
2007-09-13 Wim Taymans <wim.taymans@gmail.com>
|
2007-09-13 Wim Taymans <wim.taymans@gmail.com>
|
||||||
|
|
||||||
* gst-libs/gst/audio/gstbaseaudiosink.c:
|
* gst-libs/gst/audio/gstbaseaudiosink.c:
|
||||||
|
|
|
@ -2760,6 +2760,7 @@ plugin_init (GstPlugin * plugin)
|
||||||
static gchar *asf_exts[] = { "asf", "wm", "wma", "wmv", NULL };
|
static gchar *asf_exts[] = { "asf", "wm", "wma", "wmv", NULL };
|
||||||
static gchar *au_exts[] = { "au", "snd", NULL };
|
static gchar *au_exts[] = { "au", "snd", NULL };
|
||||||
static gchar *avi_exts[] = { "avi", NULL };
|
static gchar *avi_exts[] = { "avi", NULL };
|
||||||
|
static gchar *qcp_exts[] = { "qcp", NULL };
|
||||||
static gchar *cdxa_exts[] = { "dat", NULL };
|
static gchar *cdxa_exts[] = { "dat", NULL };
|
||||||
static gchar *flac_exts[] = { "flac", NULL };
|
static gchar *flac_exts[] = { "flac", NULL };
|
||||||
static gchar *flx_exts[] = { "flc", "fli", NULL };
|
static gchar *flx_exts[] = { "flc", "fli", NULL };
|
||||||
|
@ -2850,6 +2851,8 @@ plugin_init (GstPlugin * plugin)
|
||||||
au_type_find, au_exts, AU_CAPS, NULL, NULL);
|
au_type_find, au_exts, AU_CAPS, NULL, NULL);
|
||||||
TYPE_FIND_REGISTER_RIFF (plugin, "video/x-msvideo", GST_RANK_PRIMARY,
|
TYPE_FIND_REGISTER_RIFF (plugin, "video/x-msvideo", GST_RANK_PRIMARY,
|
||||||
avi_exts, "AVI ");
|
avi_exts, "AVI ");
|
||||||
|
TYPE_FIND_REGISTER_RIFF (plugin, "audio/qcelp", GST_RANK_PRIMARY,
|
||||||
|
qcp_exts, "QLCM");
|
||||||
TYPE_FIND_REGISTER_RIFF (plugin, "video/x-cdxa", GST_RANK_PRIMARY,
|
TYPE_FIND_REGISTER_RIFF (plugin, "video/x-cdxa", GST_RANK_PRIMARY,
|
||||||
cdxa_exts, "CDXA");
|
cdxa_exts, "CDXA");
|
||||||
TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-vcd", GST_RANK_PRIMARY,
|
TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-vcd", GST_RANK_PRIMARY,
|
||||||
|
|
Loading…
Reference in a new issue