00001 #ifndef MNT_MPEG1_SLICE_H 00002 #define MNT_MPEG1_SLICE_H 00003 00004 #include <stdint.h> 00005 #include "mnt_bit_parser.h" 00006 00010 class MntMPEG1SliceHdr 00011 { 00012 public: 00013 00014 uint16_t vertical_pos_; 00015 uint16_t quant_scale_; 00020 void parse(BitParser *bp); 00021 }; 00022 00023 #endif