source: svn/trunk/newcon3bcm2_21bu/dta/src/dcc/src/bdccpriv.h @ 2

Last change on this file since 2 was 2, checked in by jglee, 11 years ago

first commit

  • Property svn:executable set to *
File size: 1.7 KB
Line 
1/***************************************************************************
2 *     Copyright (c) 2002-2005, Broadcom Corporation
3 *     All Rights Reserved
4 *     Confidential Property of Broadcom Corporation
5 *
6 *  THIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED SOFTWARE LICENSE
7 *  AGREEMENT  BETWEEN THE USER AND BROADCOM.  YOU HAVE NO RIGHT TO USE OR
8 *  EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT.
9 *
10 * $brcm_Workfile: bdccpriv.h $
11 * $brcm_Revision: 2 $
12 * $brcm_Date: 4/18/05 2:37p $
13 *
14 * Module Description:
15 *      A common Private header for internal use of all bdcc708 files.
16 *
17 * Revision History:
18 *
19 * $brcm_Log: /BSEAV/lib/ccgfx/source/bdccpriv.h $
20 *
21 * 2   4/18/05 2:37p shyam
22 * PR 8365 : Under development
23 *
24 * 1   3/17/05 7:47p shyam
25 * PR 8365 : Add other sub-modules of ccgfx
26 *
27 ***************************************************************************/
28
29
30#ifndef BDCCPRIV_H
31#define BDCCPRIV_H
32
33#ifdef __cplusplus
34extern "C" {
35#endif
36
37#define BDCC_P_PrintEx          BCCGFX_P_PrintEx
38
39/* Control for Dumping of Stream Parameters */
40#define BDCC_P_USERDATA                 1
41#define BDCC_P_TRANSPORT                        2
42#define BDCC_P_608TRANSCODER            4
43#define BDCC_P_CODING                           8
44
45#define BDCC_P_DUMP_STREAM_FLAG         0 /* Any combo of above four defines */
46
47#define BDCC_P_CYGRID75         75
48#define BDCC_P_CY15                             15
49
50#define BDCC_P_GRID160210               5
51
52#ifndef NULL
53        #define NULL                    (0)
54#endif
55
56#ifndef min
57        #define min(a,b)                (((a)<(b)) ? (a) : (b))
58#endif
59
60#ifndef max
61        #define max(a,b)                (((a)>(b)) ? (a) : (b))
62#endif
63
64#if 0
65
66#ifndef DCCPRINTF_HERE
67        extern int cx3242 ;
68        extern int cxGrid160210 ;
69#else
70        int cx3242                              = 32 ;
71        int cxGrid160210                = 160 ;
72#endif
73
74#endif
75
76
77
78
79
80
81#ifdef __cplusplus
82}
83#endif
84
85#endif /* BDCCPRIV_H */
86
87
Note: See TracBrowser for help on using the repository browser.