diff options
-rw-r--r-- | graphics/video/qt_decoder.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/graphics/video/qt_decoder.h b/graphics/video/qt_decoder.h index 6d72464258..659ad855e4 100644 --- a/graphics/video/qt_decoder.h +++ b/graphics/video/qt_decoder.h @@ -136,10 +136,14 @@ protected: uint32 size; }; +#include "common/pack-start.h" // START STRUCT PACKING + struct ParseTable { uint32 type; int (QuickTimeDecoder::*func)(MOVatom atom); - }; + } PACKED_STRUCT; + +#include "common/pack-end.h" // END STRUCT PACKING struct MOVstts { int count; |