From ea2e245225b09aaac6f3410d60539e1d5d179bec Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Loeuillet?= Date: Mon, 17 May 2004 12:06:20 +0000 Subject: [PATCH] - 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(-) diff --git a/gst/auparse/gstauparse.c b/gst/auparse/gstauparse.c index b197f2c..4f16f25 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 { -- 2.7.4