From ea2e245225b09aaac6f3410d60539e1d5d179bec Mon Sep 17 00:00:00 2001 From: Stéphane Loeuillet Date: Mon, 17 May 2004 12:06:20 +0000 Subject: - LE/Dec au files were broken (a bug i introduced) Original commit message from CVS: - LE/Dec au files were broken (a bug i introduced) --- gst/auparse/gstauparse.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gst/auparse') diff --git a/gst/auparse/gstauparse.c b/gst/auparse/gstauparse.c index b197f2c3..4f16f253 100644 --- a/gst/auparse/gstauparse.c +++ b/gst/auparse/gstauparse.c @@ -213,11 +213,11 @@ gst_auparse_chain (GstPad * pad, GstData * _data) /* Do not trust size, could be set to -1 : unknown */ auparse->size = GST_READ_UINT32_LE (head); head++; - auparse->encoding = GST_READ_UINT32_LE (*head); + auparse->encoding = GST_READ_UINT32_LE (head); head++; - auparse->frequency = GST_READ_UINT32_LE (*head); + auparse->frequency = GST_READ_UINT32_LE (head); head++; - auparse->channels = GST_READ_UINT32_LE (*head); + auparse->channels = GST_READ_UINT32_LE (head); head++; } else { -- cgit