選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

10ヶ月前
12345678910111213141516171819202122232425
  1. #ifndef _mov_box_h_
  2. #define _mov_box_h_
  3. #include <stdint.h>
  4. #include <stddef.h>
  5. // ISO/IEC 14496-12:2012(E) 4.2 Object Structure (16)
  6. struct mov_box_t
  7. {
  8. uint64_t size; // 0-size: box extends to end of file, 1-size: large size
  9. uint32_t type;
  10. // if 'uuid' == type
  11. //uint8_t usertype[16];
  12. // FullBox
  13. //uint32_t version : 8;
  14. //uint32_t flags : 24;
  15. #if defined(DEBUG) || defined(_DEBUG)
  16. int level;
  17. #endif
  18. };
  19. #endif /* !_mov_box_h_ */