source: svn/trunk/newcon3bcm2_21bu/magnum/syslib/vbilib/bvbilib_bitread.h @ 63

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

first commit

  • Property svn:executable set to *
File size: 2.5 KB
Line 
1/***************************************************************************
2 *     Copyright (c) 2003-2010, 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: bvbilib_bitread.h $
11 * $brcm_Revision: Hydra_Software_Devel/7 $
12 * $brcm_Date: 8/27/10 1:46p $
13 *
14 * Module Description:
15 *
16 * Revision History:
17 *
18 * $brcm_Log: /magnum/syslib/vbilib/bvbilib_bitread.h $
19 *
20 * Hydra_Software_Devel/7   8/27/10 1:46p darnstein
21 * SW3548-3022: merge to production branch.
22 *
23 * Hydra_Software_Devel/SW3548-3022/1   7/28/10 4:39p darnstein
24 * SW3548-3022: bitstream parsing is relayed to commonutils module BUDP.
25 *
26 * Hydra_Software_Devel/6   9/11/07 5:18p darnstein
27 * PR25708: First release of SCTE encoder software.
28 *
29 * Hydra_Software_Devel/5   3/22/05 1:51p darnstein
30 * PR 14504: Arman's speed optimizations have been applied.
31 *
32 * Hydra_Software_Devel/4   1/14/05 11:58a darnstein
33 * PR 13797: Allow read from address that is not a multiple of 4.  Fix
34 * counting error that Bill Fassl discovered.
35 *
36 * Hydra_Software_Devel/3   10/18/04 5:06p darnstein
37 * PR 12874: Restore the calling sequence of BVBILIB_DCCparse() to avoid
38 * giving problems to Broadcom customers.
39 *
40 * Hydra_Software_Devel/2   10/12/04 11:36a darnstein
41 * PR 12874: fix a structured comment.
42 *
43 * Hydra_Software_Devel/1   10/11/04 3:23p darnstein
44 * PR12874: Initial version.
45 ***************************************************************************/
46
47/*= Module Overview *********************************************************
48<verbatim>
49
50Overview
51Software has been moved to the BUDP commonutils module.
52
53</verbatim>
54***************************************************************************/
55
56#ifndef BVBILIBBITREAD_H__
57#define BVBILIBBITREAD_H__
58
59#include "budp_bitread.h"
60
61#ifdef __cplusplus
62extern "C" {
63#endif
64
65/* Data structures */
66#define BVBIlib_Bitread_Context BUDP_Bitread_Context
67
68/* Functions */
69#define BVBIlib_Bitread_Init BUDP_Bitread_Init
70#define BVBIlib_Bitread_Read BUDP_Bitread_Read
71#define BVBIlib_Bitread_Byte BUDP_Bitread_Byte
72#define BVBIlib_Bitread_GetByteOffset BUDP_Bitread_GetByteOffset
73#define BVBIlib_Bitread_next_start_code BUDP_Bitread_next_start_code
74
75#ifdef __cplusplus
76}
77#endif
78 
79#endif /* BVBILIBBITREAD_H__ */
Note: See TracBrowser for help on using the repository browser.