| 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_dccparse_dss.h $ |
|---|
| 11 | * $brcm_Revision: Hydra_Software_Devel/3 $ |
|---|
| 12 | * $brcm_Date: 10/21/10 4:37p $ |
|---|
| 13 | * |
|---|
| 14 | * Module Description: |
|---|
| 15 | * |
|---|
| 16 | * Revision History: |
|---|
| 17 | * |
|---|
| 18 | * $brcm_Log: /magnum/syslib/vbilib/bvbilib_dccparse_dss.h $ |
|---|
| 19 | * |
|---|
| 20 | * Hydra_Software_Devel/3 10/21/10 4:37p darnstein |
|---|
| 21 | * SW7401-2571: cut over to the DSS userdata parser that DSS customer |
|---|
| 22 | * engineers perfer. |
|---|
| 23 | * |
|---|
| 24 | * Hydra_Software_Devel/2 10/21/10 2:44p darnstein |
|---|
| 25 | * SW7401-2571: preliminary update to DSS parser. More work is needed. |
|---|
| 26 | * |
|---|
| 27 | * Hydra_Software_Devel/1 10/18/10 6:18p darnstein |
|---|
| 28 | * SW3548-3022: Bring DSS work of BIll Hsu and Richard Li to the main |
|---|
| 29 | * Hydra_Software_Devel branch of ClearCase. |
|---|
| 30 | * |
|---|
| 31 | * SanJose_CDI_Devel/1 1/15/08 5:28p bhsu |
|---|
| 32 | * PR38704: Added Support CC Subtitle |
|---|
| 33 | ***************************************************************************/ |
|---|
| 34 | |
|---|
| 35 | /*= Module Overview ********************************************************* |
|---|
| 36 | <verbatim> |
|---|
| 37 | |
|---|
| 38 | Overview |
|---|
| 39 | This software has been moved to the BUDP commonutils module. |
|---|
| 40 | |
|---|
| 41 | </verbatim> |
|---|
| 42 | ***************************************************************************/ |
|---|
| 43 | |
|---|
| 44 | #ifndef BVBILIBDCCPARSEDSS_H__ |
|---|
| 45 | #define BVBILIBDCCPARSEDSS_H__ |
|---|
| 46 | |
|---|
| 47 | #include "budp_dccparse_dss.h" |
|---|
| 48 | |
|---|
| 49 | typedef enum { |
|---|
| 50 | BVBIlib_DCCparse_CC_Dss_Type_Undefined = |
|---|
| 51 | BUDP_DCCparse_CC_Dss_Type_Undefined, |
|---|
| 52 | BVBIlib_DCCparse_CC_Dss_Type_ClosedCaption = |
|---|
| 53 | BUDP_DCCparse_CC_Dss_Type_ClosedCaption, |
|---|
| 54 | BVBIlib_DCCparse_CC_Dss_Type_Subtitle = |
|---|
| 55 | BUDP_DCCparse_CC_Dss_Type_Subtitle |
|---|
| 56 | } BVBIlib_DCCparse_Dss_CC_Type; |
|---|
| 57 | |
|---|
| 58 | #define BVBIlib_DCCparse_dss_cc_subtitle BUDP_DCCparse_dss_cc_subtitle |
|---|
| 59 | |
|---|
| 60 | #define BVBIlib_DCCparse_DSS BUDP_DCCparse_DSS |
|---|
| 61 | |
|---|
| 62 | #endif /* BVBILIBDCCPARSEDSS_H__ */ |
|---|
| 63 | |
|---|