diff options
| author | Marcel Holtmann <marcel@holtmann.org> | 2007-08-27 14:10:00 +0000 | 
|---|---|---|
| committer | Marcel Holtmann <marcel@holtmann.org> | 2007-08-27 14:10:00 +0000 | 
| commit | 2bb0572a896151e0cf838282fb81372fa6c47999 (patch) | |
| tree | ddb77008a8d4e91ff269c150a64a0ca4afd7a51c | |
| parent | 5aef8f33ebb1fb537e13ffeb336eb1d886a7adca (diff) | |
Force LITTLE_ENDIAN instead of BYTE_ORDER for now
| -rw-r--r-- | audio/gstsbcdec.c | 2 | ||||
| -rw-r--r-- | audio/gstsbcenc.c | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/audio/gstsbcdec.c b/audio/gstsbcdec.c index 0b50a4ba..98504d4d 100644 --- a/audio/gstsbcdec.c +++ b/audio/gstsbcdec.c @@ -49,7 +49,7 @@ static GstStaticPadTemplate sbc_dec_src_factory =  		GST_STATIC_CAPS("audio/x-raw-int, "  				"rate = (int) { 16000, 32000, 44100, 48000 }, "  				"channels = (int) [ 1, 2 ], " -				"endianness = (int) BYTE_ORDER, " +				"endianness = (int) LITTLE_ENDIAN, "  				"signed = (boolean) true, "  				"width = (int) 16, "  				"depth = (int) 16")); diff --git a/audio/gstsbcenc.c b/audio/gstsbcenc.c index 7f94fc2a..812c1193 100644 --- a/audio/gstsbcenc.c +++ b/audio/gstsbcenc.c @@ -70,7 +70,7 @@ static GstStaticPadTemplate sbc_enc_sink_factory =  		GST_STATIC_CAPS("audio/x-raw-int, "  				"rate = (int) { 16000, 32000, 44100, 48000 }, "  				"channels = (int) [ 1, 2 ], " -				"endianness = (int) BYTE_ORDER, " +				"endianness = (int) LITTLE_ENDIAN, "  				"signed = (boolean) true, "  				"width = (int) 16, "  				"depth = (int) 16")); | 
