You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
355B

  1. #ifndef AVCODEC_BETHSOFTVIDEO_H
  2. #define AVCODEC_BETHSOFTVIDEO_H
  3. enum BethsoftVidBlockType
  4. {
  5. PALETTE_BLOCK = 0x02,
  6. FIRST_AUDIO_BLOCK = 0x7c,
  7. AUDIO_BLOCK = 0x7d,
  8. VIDEO_I_FRAME = 0x03,
  9. VIDEO_P_FRAME = 0x01,
  10. VIDEO_YOFF_P_FRAME = 0x04,
  11. EOF_BLOCK = 0x14,
  12. };
  13. #endif // AVCODEC_BETHSOFTVIDEO_H