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

DVD

开发平台:

Others

  1. /*
  2. // $Header: /I76/I76_Common/I76_Reference/Playcore/Nav_Clips/AviDrm/libDrmDecrypt/DrmAdpModelId.c 1     2/10/04 10:24p Lotan $
  3. // Copyright (c) DivXNetworks, Inc. http://www.divxnetworks.com
  4. // All rights reserved.
  5. //
  6. // This software is the confidential and proprietary information of DivxNetworks
  7. // Inc. ("Confidential Information").  You shall not disclose such Confidential
  8. // Information and shall use it only in accordance with the terms of the license
  9. // agreement you entered into with DivXNetworks, Inc.
  10. */
  11. /*
  12. This model number is assigned to each product by DivXNetworks.
  13. Value 0x31, 0x30 is a TEST value only.  The 12 bits of your
  14. model number will be part of your local implementation of the DRM.
  15. */
  16. #include "Config.h" // Global Configuration - do not remove!
  17. #include "IncludeSysDefs.h"
  18. #ifdef AVI_DRM_SUPPORT
  19. #include "PlaycoreNav_ClipsAviDrmlibDrmDecryptDrmAdpModelId.h"
  20. void drmGetModelId(uint8_t* modelId)
  21. {
  22. #ifdef A_SD340E 
  23. modelId[0] = 0xE9; 
  24. modelId[1] = 0x10 & 0xF0; 
  25. #else
  26. modelId[0] = 0x31;
  27.     modelId[1] = 0x30 & 0xF0;
  28. #endif
  29. }
  30. #endif