diff options
author | David Schleef <ds@schleef.org> | 2004-12-19 03:51:12 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2004-12-19 03:51:12 +0000 |
commit | b25b66b9a899120e35493f9ce2f2fd88e869bdba (patch) | |
tree | b9034423917b71de916ee98d1898d9d2396e5819 /gst/tta | |
parent | 231c16577ee6605d7c1f12221b7f58027f0feab5 (diff) | |
download | gstreamer-plugins-bad-b25b66b9a899120e35493f9ce2f2fd88e869bdba.tar.gz |
gst/tta/gstttadec.c: And yet another portability fix.
Original commit message from CVS:
* gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
portability fix.
Diffstat (limited to 'gst/tta')
-rw-r--r-- | gst/tta/gstttadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/tta/gstttadec.c b/gst/tta/gstttadec.c index 00007ae56..c550e7cd7 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); |