# HG changeset patch # User melanson # Date 1009226329 0 # Node ID f5a1a8e268d5afd6ad5f22b4b693979df9fe5368 # Parent d358dc143a9e6c91e6fc004f9d472849da50d238 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. diff -r d358dc143a9e -r f5a1a8e268d5 libmpdemux/asf.h --- a/libmpdemux/asf.h Mon Dec 24 18:54:58 2001 +0000 +++ b/libmpdemux/asf.h Mon Dec 24 20:38:49 2001 +0000 @@ -145,7 +145,7 @@ (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); \