summaryrefslogtreecommitdiffstats
path: root/gst/modplug/gstmodplug.cc
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2005-02-08 15:03:41 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2005-02-08 15:03:41 +0000
commitebb9face416757a5e93fd2bfbb14afc712b1802c (patch)
tree9b69b3b30e78c7c4f0109a17f2be99eb4966a1c6 /gst/modplug/gstmodplug.cc
parent61ff5f6490b95863dda671d852e459d2af16bec1 (diff)
downloadgst-plugins-bad-ebb9face416757a5e93fd2bfbb14afc712b1802c.tar.gz
gst-plugins-bad-ebb9face416757a5e93fd2bfbb14afc712b1802c.tar.bz2
gst-plugins-bad-ebb9face416757a5e93fd2bfbb14afc712b1802c.zip
Add missing endianness to template (fixes #165509).
Original commit message from CVS: * ext/mikmod/gstmikmod.c: * gst/modplug/gstmodplug.cc: Add missing endianness to template (fixes #165509).
Diffstat (limited to 'gst/modplug/gstmodplug.cc')
-rw-r--r--gst/modplug/gstmodplug.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/modplug/gstmodplug.cc b/gst/modplug/gstmodplug.cc
index c5a2fa82..64c5e9f2 100644
--- a/gst/modplug/gstmodplug.cc
+++ b/gst/modplug/gstmodplug.cc
@@ -76,7 +76,7 @@ static GstStaticPadTemplate modplug_src_template_factory =
GST_PAD_SRC,
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("audio/x-raw-int, " "endianness = (int) BYTE_ORDER, " "signed = (boolean) TRUE, " "width = (int) 16, " "depth = (int) 16, " "rate = (int) { 8000, 11025, 22050, 44100 }, " /* FIXME? */
- "channels = (int) [ 1, 2 ]; " "audio/x-raw-int, " "signed = (boolean) FALSE, " "width = (int) 8, " "depth = (int) 8, " "rate = (int) { 8000, 11025, 22050, 44100 }, " /* FIXME? */
+ "channels = (int) [ 1, 2 ]; " "audio/x-raw-int, " "endianness = (int) BYTE_ORDER, " "signed = (boolean) FALSE, " "width = (int) 8, " "depth = (int) 8, " "rate = (int) { 8000, 11025, 22050, 44100 }, " /* FIXME? */
"channels = (int) [ 1, 2 ]")
);