summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--gst/tta/gstttadec.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4eab044a..4060ae1e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2004-12-18 David Schleef <ds@schleef.org>
+ * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
+ portability fix.
+
+2004-12-18 David Schleef <ds@schleef.org>
+
* gst/tta/ttadec.h: Disable some header code that isn't used
and clearly isn't portable.
diff --git a/gst/tta/gstttadec.c b/gst/tta/gstttadec.c
index 00007ae5..c550e7cd 100644
--- a/gst/tta/gstttadec.c
+++ b/gst/tta/gstttadec.c
@@ -122,7 +122,7 @@ gst_tta_dec_link (GstPad * pad, const GstCaps * caps)
"channels", G_TYPE_INT, ttadec->channels,
"depth", G_TYPE_INT, bits,
"width", G_TYPE_INT, bits,
- "endianness", G_TYPE_INT, LITTLE_ENDIAN,
+ "endianness", G_TYPE_INT, G_LITTLE_ENDIAN,
"signed", G_TYPE_BOOLEAN, TRUE, NULL);
gst_pad_set_explicit_caps (ttadec->srcpad, srccaps);