- LE/Dec au files were broken (a bug i introduced)
authorStéphane Loeuillet <gstreamer@leroutier.net>
Mon, 17 May 2004 12:06:20 +0000 (12:06 +0000)
committerStéphane Loeuillet <gstreamer@leroutier.net>
Mon, 17 May 2004 12:06:20 +0000 (12:06 +0000)
Original commit message from CVS:
- LE/Dec au files were broken (a bug i introduced)

gst/auparse/gstauparse.c

index b197f2c..4f16f25 100644 (file)
@@ -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 {