summaryrefslogtreecommitdiffstats
path: root/gst/auparse
diff options
context:
space:
mode:
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 {