| [2] | 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_scteparse.h $ |
|---|
| 11 | * $brcm_Revision: Hydra_Software_Devel/3 $ |
|---|
| 12 | * $brcm_Date: 8/27/10 1:58p $ |
|---|
| 13 | * |
|---|
| 14 | * Module Description: |
|---|
| 15 | * |
|---|
| 16 | * Revision History: |
|---|
| 17 | * |
|---|
| 18 | * $brcm_Log: /magnum/syslib/vbilib/bvbilib_scteparse.h $ |
|---|
| 19 | * |
|---|
| 20 | * Hydra_Software_Devel/3 8/27/10 1:58p darnstein |
|---|
| 21 | * SW3548-3022: merge to production branch. |
|---|
| 22 | * |
|---|
| 23 | * Hydra_Software_Devel/SW3548-3022/1 7/28/10 4:40p darnstein |
|---|
| 24 | * SW3548-3022: bitstream parsing is relayed to commonutils module BUDP. |
|---|
| 25 | * |
|---|
| 26 | * Hydra_Software_Devel/2 10/26/07 10:51a ptimariu |
|---|
| 27 | * PR36451: closing bracket, __cplusplus |
|---|
| 28 | * |
|---|
| 29 | * Hydra_Software_Devel/1 9/7/07 5:10p darnstein |
|---|
| 30 | * PR25708: Parsers for SCTE 20 and SCTE 21 data. |
|---|
| 31 | * |
|---|
| 32 | ***************************************************************************/ |
|---|
| 33 | |
|---|
| 34 | /*= Module Overview ********************************************************* |
|---|
| 35 | <verbatim> |
|---|
| 36 | |
|---|
| 37 | Overview |
|---|
| 38 | Software has been moved to the BUDP commonutils module. */ |
|---|
| 39 | |
|---|
| 40 | </verbatim> |
|---|
| 41 | ***************************************************************************/ |
|---|
| 42 | |
|---|
| 43 | #ifndef BVBILIBSCTEPARSE_H__ |
|---|
| 44 | #define BVBILIBSCTEPARSE_H__ |
|---|
| 45 | |
|---|
| 46 | #include "budp_scteparse.h" |
|---|
| 47 | |
|---|
| 48 | #ifdef __cplusplus |
|---|
| 49 | extern "C" { |
|---|
| 50 | #endif |
|---|
| 51 | |
|---|
| 52 | /* Data structures */ |
|---|
| 53 | typedef enum { |
|---|
| 54 | BVBIlib_SCTEparse_Format_Unknown = BUDP_SCTEparse_Format_Unknown, |
|---|
| 55 | BVBIlib_SCTEparse_Format_SCTE20 = BUDP_SCTEparse_Format_SCTE20, |
|---|
| 56 | BVBIlib_SCTEparse_Format_SCTE21CC = BUDP_SCTEparse_Format_SCTE21CC, |
|---|
| 57 | BVBIlib_SCTEparse_Format_SCTE21ACC = BUDP_SCTEparse_Format_SCTE21ACC, |
|---|
| 58 | BVBIlib_SCTEparse_Format_SCTE21PAM = BUDP_SCTEparse_Format_SCTE21PAM |
|---|
| 59 | } |
|---|
| 60 | BUDP_SCTEparse_Format; |
|---|
| 61 | |
|---|
| 62 | #define BVBIlib_SCTEparse_sctedata BUDP_SCTEparse_sctedata |
|---|
| 63 | |
|---|
| 64 | /* Functions */ |
|---|
| 65 | #define BVBIlib_SCTE20parse BUDP_SCTE20parse |
|---|
| 66 | #define BVBIlib_SCTE21parse BUDP_SCTE21parse |
|---|
| 67 | |
|---|
| 68 | #ifdef __cplusplus |
|---|
| 69 | } |
|---|
| 70 | #endif |
|---|
| 71 | |
|---|
| 72 | #endif /* BVBILIBSCTEPARSE_H__ */ |
|---|