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

DVD

开发平台:

Others

  1. /* **************************************************************************************
  2.  *  Copyright (c) 2002 ZORAN Corporation, All Rights Reserved
  3.  *  THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF ZORAN CORPORATION
  4.  *
  5.  *  File: $Workfile: NAV_ERR.H $             
  6.  *
  7.  * Description:
  8.  * ============
  9.  * DVD navigation error desacription
  10.  * 
  11.  * Log:
  12.  * ====
  13.  * $Revision: 4 $
  14.  * Last Modified by $Author: Angieh $ at $Modtime: 04-02-25 19:03 $ 
  15.  ****************************************************************************************
  16.  * Updates:
  17.  ****************************************************************************************
  18.  * $Log: /I76/I76_Common/I76_Reference/Playcore/Nav_DVD/Header/NAV_ERR.H $
  19.  * 
  20.  * 4     04-02-25 19:04 Angieh
  21.  * Add error type DVDNAV_ERR_WATERMARK_STOP.
  22.  * 
  23.  * 3     2/20/04 6:16p Glenl
  24.  * Merged S1 code
  25.  * 
  26.  * 2     12/30/03 11:28a Leonh
  27.  * Angieh:Change for DVD AUDIO navigator header.
  28.  * 
  29.  * 4     8/20/03 2:56p Leonh
  30.  * Merge dvd audio code with the latest nav_dvd code with reference
  31.  * 
  32.  * 
  33.  * 1     03-04-28 11:15 Fwang
  34.  * Initial for DVDA
  35.  * 
  36.  * 2     23/04/02 9:34 Nirm
  37.  * - Added dependency in "Config.h".
  38.  * 
  39.  * 1     2/17/02 12:12 Rinata
  40.  * 
  41.  * 4     9/01/02 16:40 Nirm
  42.  * Corrected Include-Paths.
  43.  * 
  44.  * 3     9/01/02 14:53 Atai
  45.  * Code cleaning
  46.  **************************************************************************************** */
  47. #include "Config.h" // Global Configuration - do not remove!
  48. #ifndef _NAV_ERR_H
  49. #define _NAV_ERR_H
  50. #include "PlaycoreCoremaincore_err.h"
  51. #define DVDNAV_ERR_PROHIBITED_UOP MAKE_ERROR_CODE(DVDNAV_ERROR_BASE, 1 )
  52. #define DVDNAV_ERR_PARENTAL_LEVEL_PROHIBIT MAKE_ERROR_CODE(DVDNAV_ERROR_BASE, 2 )
  53. #define DVDNAV_ERR_REPEAT_AB_PROHIBIT MAKE_ERROR_CODE(DVDNAV_ERROR_BASE, 3 ) /* ZORAN TC0131 */
  54. #define DVDNAV_ERR_STOP MAKE_ERROR_CODE(DVDNAV_ERROR_BASE, 4 ) /* ZORAN BMV0209 */
  55. #define DVDNAV_ERR_INVALID_REGION MAKE_ERROR_CODE(DVDNAV_ERROR_BASE, 5 ) /* ZORAN TC0314 */
  56. #define DVDNAV_ERR_SHUFFLE_PROHIBIT MAKE_ERROR_CODE(DVDNAV_ERROR_BASE, 6 ) /* ZORAN TC0330 */
  57. // <<< ZKR GL082103 : Added invalid TV system error code.
  58. #if defined(D_PROHIBIT_PAL_TO_NTSC)
  59. #define DVDNAV_ERR_INVALID_TV_SYSTEM        MAKE_ERROR_CODE(DVDNAV_ERROR_BASE, 8 )
  60. #endif
  61. // ZKR GL082103 >>>
  62. #ifdef WATERMARK_SUPPORT
  63. #define DVDNAV_ERR_WATERMARK_STOP MAKE_ERROR_CODE(DVDNAV_ERROR_BASE, 9)
  64. #endif
  65. #endif