| 1 | /*************************************************************************** |
|---|
| 2 | * Copyright (c) 2003-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: bsettop_p_stream.h $ |
|---|
| 11 | * $brcm_Revision: 4 $ |
|---|
| 12 | * $brcm_Date: 8/10/05 3:17p $ |
|---|
| 13 | * |
|---|
| 14 | * Module Description: |
|---|
| 15 | * |
|---|
| 16 | * Revision History: |
|---|
| 17 | * |
|---|
| 18 | * $brcm_Log: /BSEAV/api/include/bsettop_p_stream.h $ |
|---|
| 19 | ***************************************************************************/ |
|---|
| 20 | #ifndef BSETTOP_P_STREAM_H__ |
|---|
| 21 | #define BSETTOP_P_STREAM_H__ |
|---|
| 22 | |
|---|
| 23 | #include "bsettop_stream.h" |
|---|
| 24 | #include "nexus_video_decoder.h" |
|---|
| 25 | #include "nexus_video_decoder_primer.h" |
|---|
| 26 | |
|---|
| 27 | typedef struct bsettop_p_stream_t |
|---|
| 28 | { |
|---|
| 29 | NEXUS_VideoDecoderHandle videoDecoder; |
|---|
| 30 | NEXUS_PidChannelHandle videoPidChannel; |
|---|
| 31 | NEXUS_PidChannelHandle pcrPidChannel; |
|---|
| 32 | NEXUS_PidChannelHandle audioPidChannel; |
|---|
| 33 | NEXUS_StcChannelHandle stcChannel; |
|---|
| 34 | NEXUS_VideoDecoderPrimerHandle primerHandle; |
|---|
| 35 | NEXUS_VideoDecoderStartSettings decodeSettings; |
|---|
| 36 | bstream_status status; |
|---|
| 37 | }bsettop_p_stream_t; |
|---|
| 38 | |
|---|
| 39 | #ifdef __cplusplus |
|---|
| 40 | extern "C" { |
|---|
| 41 | #endif |
|---|
| 42 | |
|---|
| 43 | /** |
|---|
| 44 | Summary: |
|---|
| 45 | Module initialization function. |
|---|
| 46 | */ |
|---|
| 47 | void bstream_init(NEXUS_VideoDecoderHandle videoDecodeHandle); |
|---|
| 48 | |
|---|
| 49 | /** |
|---|
| 50 | Summary: |
|---|
| 51 | Return private stream structure. |
|---|
| 52 | */ |
|---|
| 53 | bsettop_p_stream_t *bstream_get_info(bstream_t stream); |
|---|
| 54 | |
|---|
| 55 | #ifdef __cplusplus |
|---|
| 56 | } |
|---|
| 57 | #endif |
|---|
| 58 | |
|---|
| 59 | #endif /* BSETTOP_P_STREAM_H__ */ |
|---|
| 60 | |
|---|
| 61 | |
|---|