mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 20:42:30 +00:00
gst/typefind/gsttypefindfunctions.c: Recognise ancient RealAudio files (see #349779).
Original commit message from CVS: * gst/typefind/gsttypefindfunctions.c: (plugin_init): Recognise ancient RealAudio files (see #349779).
This commit is contained in:
parent
6b016ab6f0
commit
a17d466338
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/typefind/gsttypefindfunctions.c: (plugin_init):
|
||||||
|
Recognise ancient RealAudio files (see #349779).
|
||||||
|
|
||||||
2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
|
2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
Patch by: Jens Granseuer <jensgr at gmx net>
|
Patch by: Jens Granseuer <jensgr at gmx net>
|
||||||
|
|
|
@ -2511,6 +2511,8 @@ plugin_init (GstPlugin * plugin)
|
||||||
html_exts, HTML_CAPS, NULL, NULL);
|
html_exts, HTML_CAPS, NULL, NULL);
|
||||||
TYPE_FIND_REGISTER_START_WITH (plugin, "application/vnd.rn-realmedia",
|
TYPE_FIND_REGISTER_START_WITH (plugin, "application/vnd.rn-realmedia",
|
||||||
GST_RANK_SECONDARY, rm_exts, ".RMF", 4, GST_TYPE_FIND_MAXIMUM);
|
GST_RANK_SECONDARY, rm_exts, ".RMF", 4, GST_TYPE_FIND_MAXIMUM);
|
||||||
|
TYPE_FIND_REGISTER_START_WITH (plugin, "application/x-pn-realaudio",
|
||||||
|
GST_RANK_SECONDARY, rm_exts, ".ra\375", 4, GST_TYPE_FIND_MAXIMUM);
|
||||||
TYPE_FIND_REGISTER (plugin, "application/x-shockwave-flash",
|
TYPE_FIND_REGISTER (plugin, "application/x-shockwave-flash",
|
||||||
GST_RANK_SECONDARY, swf_type_find, swf_exts, SWF_CAPS, NULL, NULL);
|
GST_RANK_SECONDARY, swf_type_find, swf_exts, SWF_CAPS, NULL, NULL);
|
||||||
TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-flv", GST_RANK_SECONDARY,
|
TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-flv", GST_RANK_SECONDARY,
|
||||||
|
|
Loading…
Reference in a new issue