mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
- 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:
parent
27a875e4b0
commit
ea2e245225
1 changed files with 3 additions and 3 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue