diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-08-07 09:21:04 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-08-07 09:21:04 +0200 |
commit | 27efe0067c864baa57053bd7ce45ffb33aa6a6ca (patch) | |
tree | 6527fb79c30567d4f8043be1b49b5687c1e6a688 /ext/gme | |
parent | 9d9fa0a31d983530befe1ab9f3c701d5fa82c8be (diff) |
gmedec: Add caps for all supported file formats to the srcpad template
Diffstat (limited to 'ext/gme')
-rw-r--r-- | ext/gme/gstgme.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ext/gme/gstgme.c b/ext/gme/gstgme.c index fb8485a80..ff4e41d6d 100644 --- a/ext/gme/gstgme.c +++ b/ext/gme/gstgme.c @@ -29,8 +29,13 @@ #include <glib.h> static GstStaticPadTemplate sink_factory = -GST_STATIC_PAD_TEMPLATE ("sink", GST_PAD_SINK, GST_PAD_ALWAYS, - GST_STATIC_CAPS ("audio/x-spc")); + GST_STATIC_PAD_TEMPLATE ("sink", GST_PAD_SINK, GST_PAD_ALWAYS, + GST_STATIC_CAPS ("audio/x-ay; " + "audio/x-gbs; " + "audio/x-gym; " + "audio/x-hes; " + "audio/x-kss; " + "audio/x-nsf; " "audio/x-sap; " "audio/x-spc; " "audio/x-vgm")); static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC, GST_PAD_ALWAYS, |