summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorArun Raghavan <arun@arunraghavan.net>2018-10-12 19:20:51 +0530
committerArun Raghavan <arun@arunraghavan.net>2018-10-12 19:23:21 +0530
commitef106350d4837d9509a636491c723fc5aae8df96 (patch)
tree3554260bc490cc9ac779c52958c76c95c34927e8 /ext
parent26585686b0164464a36ab11dded4f9ffb93bdcd9 (diff)
downloadgst-libav-ef106350d4837d9509a636491c723fc5aae8df96.tar.gz
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
Diffstat (limited to 'ext')
-rw-r--r--ext/libav/gstavdemux.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/libav/gstavdemux.c b/ext/libav/gstavdemux.c
index 9b6d302..30e0360 100644
--- a/ext/libav/gstavdemux.c
+++ b/ext/libav/gstavdemux.c
@@ -2098,7 +2098,8 @@ gst_ffmpegdemux_register (GstPlugin * plugin)
!strcmp (in_plugin->name, "ivf") ||
!strcmp (in_plugin->name, "brstm") ||
!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;
else {
GST_DEBUG ("ignoring %s", in_plugin->name);