0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00

Somewhere along the line, someone updated a field in an ASF structure

from 'unk1' to 'preroll'. There is a macro that is only needed on big
endian systems that didn't get updated to reflect that change.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3720 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
melanson 2001-12-24 20:38:49 +00:00
parent 664039bd2f
commit 6840dd9a95

View File

@ -145,7 +145,7 @@ typedef enum {
(h)->end_timestamp = le2me_64((h)->end_timestamp); \
(h)->duration = le2me_64((h)->duration); \
(h)->start_timestamp = le2me_32((h)->start_timestamp); \
(h)->unk1 = le2me_32((h)->unk1); \
(h)->preroll = le2me_32((h)->preroll); \
(h)->flags = le2me_32((h)->flags); \
(h)->packetsize = le2me_32((h)->packetsize); \
(h)->packetsize2 = le2me_32((h)->packetsize2); \