summaryrefslogtreecommitdiffstats
path: root/gst/auparse
diff options
context:
space:
mode:
authorStéphane Loeuillet <gstreamer@leroutier.net>2004-05-17 12:06:20 +0000
committerStéphane Loeuillet <gstreamer@leroutier.net>2004-05-17 12:06:20 +0000
commitea2e245225b09aaac6f3410d60539e1d5d179bec (patch)
treece78894eea57756ef2540d1319304ca33eded585 /gst/auparse
parent27a875e4b03d7ba05f184018e5a2a6c2ec65c35f (diff)
- 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)
Diffstat (limited to 'gst/auparse')
-rw-r--r--gst/auparse/gstauparse.c6
1 files changed, 3 insertions, 3 deletions
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 {