| 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: bxpt_directv_pcroffset.h $ |
|---|
| 11 | * $brcm_Revision: Hydra_Software_Devel/1 $ |
|---|
| 12 | * $brcm_Date: 10/25/10 2:09p $ |
|---|
| 13 | * |
|---|
| 14 | * Module Description: |
|---|
| 15 | * |
|---|
| 16 | * Revision History: |
|---|
| 17 | * |
|---|
| 18 | * $brcm_Log: /magnum/portinginterface/xpt/base2/bxpt_directv_pcroffset.h $ |
|---|
| 19 | * |
|---|
| 20 | * Hydra_Software_Devel/1 10/25/10 2:09p gmullen |
|---|
| 21 | * SW7425-15: Moved srcs to base2 folder |
|---|
| 22 | * |
|---|
| 23 | * Hydra_Software_Devel/1 10/8/10 2:57p gmullen |
|---|
| 24 | * SW7425-15: Added header files |
|---|
| 25 | * |
|---|
| 26 | * Hydra_Software_Devel/1 9/6/05 5:12p gmullen |
|---|
| 27 | * PR15309: Added support for DirecTV in PCR offset block. |
|---|
| 28 | * |
|---|
| 29 | * |
|---|
| 30 | ***************************************************************************/ |
|---|
| 31 | |
|---|
| 32 | #ifndef BXPT_DIRECTV_PCR_OFFSET_H__ |
|---|
| 33 | #define BXPT_DIRECTV_PCR_OFFSET_H__ |
|---|
| 34 | |
|---|
| 35 | #include "bxpt_directv_pcr.h" |
|---|
| 36 | #include "bxpt_pcr_offset.h" |
|---|
| 37 | |
|---|
| 38 | #ifdef __cplusplus |
|---|
| 39 | extern "C"{ |
|---|
| 40 | #endif |
|---|
| 41 | |
|---|
| 42 | /*=************************ Module Overview ******************************** |
|---|
| 43 | The API module provides the DirecTV only APIs for the PCR Offset module. |
|---|
| 44 | ***************************************************************************/ |
|---|
| 45 | |
|---|
| 46 | /*************************************************************************** |
|---|
| 47 | Summary: |
|---|
| 48 | Set the stream type used by a PCR Offset module. |
|---|
| 49 | |
|---|
| 50 | Description: |
|---|
| 51 | This function sets mode for a given PCR module to DirecTV, or back to the |
|---|
| 52 | default MPEG. |
|---|
| 53 | |
|---|
| 54 | Returns: |
|---|
| 55 | BERR_SUCCESS - Directv mode set |
|---|
| 56 | BERR_INVALID_PARAMETER - Bad input parameter |
|---|
| 57 | ***************************************************************************/ |
|---|
| 58 | BERR_Code BXPT_DirecTv_PcrOffset_SetPcrMode( |
|---|
| 59 | BXPT_PcrOffset_Handle hChannel, /* [in] The channel handle */ |
|---|
| 60 | BXPT_PcrMode Mode |
|---|
| 61 | ); |
|---|
| 62 | |
|---|
| 63 | #ifdef __cplusplus |
|---|
| 64 | } |
|---|
| 65 | #endif |
|---|
| 66 | |
|---|
| 67 | #endif |
|---|
| 68 | |
|---|