mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
avdemux: Expose IFF container support
This exposes support for the "iff" demuxer. This is a general purpose format, and the reason to expose this now is to allow reading DSD data (which is supported via a variant called DSDIFF). More information at: https://wiki.multimedia.cx/index.php?title=IFF https://www.loc.gov/preservation/digital/formats/fdd/fdd000245.shtml
This commit is contained in:
parent
26585686b0
commit
ef106350d4
1 changed files with 2 additions and 1 deletions
|
@ -2098,7 +2098,8 @@ gst_ffmpegdemux_register (GstPlugin * plugin)
|
||||||
!strcmp (in_plugin->name, "ivf") ||
|
!strcmp (in_plugin->name, "ivf") ||
|
||||||
!strcmp (in_plugin->name, "brstm") ||
|
!strcmp (in_plugin->name, "brstm") ||
|
||||||
!strcmp (in_plugin->name, "bfstm") ||
|
!strcmp (in_plugin->name, "bfstm") ||
|
||||||
!strcmp (in_plugin->name, "gif") || !strcmp (in_plugin->name, "dsf"))
|
!strcmp (in_plugin->name, "gif") ||
|
||||||
|
!strcmp (in_plugin->name, "dsf") || !strcmp (in_plugin->name, "iff"))
|
||||||
rank = GST_RANK_MARGINAL;
|
rank = GST_RANK_MARGINAL;
|
||||||
else {
|
else {
|
||||||
GST_DEBUG ("ignoring %s", in_plugin->name);
|
GST_DEBUG ("ignoring %s", in_plugin->name);
|
||||||
|
|
Loading…
Reference in a new issue