mpeg_defs.h
上传用户:super_houu
上传日期:2008-09-21
资源大小:4099k
文件大小:1k
源码类别:

DVD

开发平台:

Others

  1. #ifndef _MPEG_DEFS_H
  2. #define _MPEG_DEFS_H
  3. #include "Includesysdefs.h"
  4. #define PICTURE_START_CODE 0x100L
  5. #define SLICE_MIN_START    0x101L
  6. #define SLICE_MAX_START    0x1AFL
  7. #define USER_START_CODE    0x1B2L
  8. #define SEQ_START_CODE     0x1B3L
  9. #define EXT_START_CODE     0x1B5L
  10. #define SEQ_END_CODE       0x1B7L
  11. #define GOP_START_CODE     0x1B8L
  12. #define ISO_END_CODE       0x1B9L
  13. #define PACK_START_CODE    0x1BAL
  14. #define SYSTEM_START_CODE  0x1BBL
  15. /* extension start code IDs */
  16. #define SEQ_ID       1
  17. #define CODING_ID    8
  18. /* chroma_format */
  19. #define CHROMA420 1
  20. /* picture structure */
  21. #define TOP_FIELD     1
  22. #define BOTTOM_FIELD  2
  23. #define FRAME_PICTURE 3
  24. /* macroblock type */
  25. typedef enum
  26. {
  27. MB_INTRA    =1,
  28. MB_QUANT    =16
  29. }MB_TYPE;
  30. #endif