source: svn/newcon3bcm2_21bu/nexus/app/bsettop_p_stream.h

Last change on this file was 76, checked in by megakiss, 10 years ago

1W 대기전력을 만족시키기 위하여 POWEROFF시 튜너를 Standby 상태로 함

  • Property svn:executable set to *
File size: 1.5 KB
Line 
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
27typedef 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
40extern "C" {
41#endif
42
43/**
44Summary:
45        Module initialization function.
46 */
47void bstream_init(NEXUS_VideoDecoderHandle videoDecodeHandle);
48
49/**
50Summary:
51        Return private stream structure.
52 */
53bsettop_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
Note: See TracBrowser for help on using the repository browser.