- 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)
This commit is contained in:
Stéphane Loeuillet 2004-05-17 12:06:20 +00:00
parent 27a875e4b0
commit ea2e245225

View 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 {