mpeg3css.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. #ifndef MPEG3CSS_H
  2. #define MPEG3CSS_H
  3. #include "mpeg3private.inc"
  4. struct mpeg3_block 
  5. {
  6. unsigned char b[5];
  7. };
  8. struct mpeg3_playkey 
  9. {
  10. int offset;
  11. unsigned char key[5];
  12. };
  13. typedef struct
  14. {
  15. int encrypted;
  16. char device_path[MPEG3_STRLEN];    /* Device the file is located on */
  17. unsigned char disk_key[MPEG3_DVD_PACKET_SIZE];
  18. unsigned char title_key[5];
  19. char challenge[10];
  20. struct mpeg3_block key1;
  21. struct mpeg3_block key2;
  22. struct mpeg3_block keycheck;
  23. int varient;
  24. int fd;
  25. char path[MPEG3_STRLEN];
  26. } mpeg3_css_t;
  27. #endif