source: svn/newcon3bcm2_21bu/nexus/modules/display/7552/include/nexus_ccir656_output.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: 5.0 KB
Line 
1/***************************************************************************
2 *     (c)2007-2011 Broadcom Corporation
3 *
4 *  This program is the proprietary software of Broadcom Corporation and/or its licensors,
5 *  and may only be used, duplicated, modified or distributed pursuant to the terms and
6 *  conditions of a separate, written license agreement executed between you and Broadcom
7 *  (an "Authorized License").  Except as set forth in an Authorized License, Broadcom grants
8 *  no license (express or implied), right to use, or waiver of any kind with respect to the
9 *  Software, and Broadcom expressly reserves all rights in and to the Software and all
10 *  intellectual property rights therein.  IF YOU HAVE NO AUTHORIZED LICENSE, THEN YOU
11 *  HAVE NO RIGHT TO USE THIS SOFTWARE IN ANY WAY, AND SHOULD IMMEDIATELY
12 *  NOTIFY BROADCOM AND DISCONTINUE ALL USE OF THE SOFTWARE.
13 *
14 *  Except as expressly set forth in the Authorized License,
15 *
16 *  1.     This program, including its structure, sequence and organization, constitutes the valuable trade
17 *  secrets of Broadcom, and you shall use all reasonable efforts to protect the confidentiality thereof,
18 *  and to use this information only in connection with your use of Broadcom integrated circuit products.
19 *
20 *  2.     TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS"
21 *  AND WITH ALL FAULTS AND BROADCOM MAKES NO PROMISES, REPRESENTATIONS OR
22 *  WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT TO
23 *  THE SOFTWARE.  BROADCOM SPECIFICALLY DISCLAIMS ANY AND ALL IMPLIED WARRANTIES
24 *  OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE,
25 *  LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION
26 *  OR CORRESPONDENCE TO DESCRIPTION. YOU ASSUME THE ENTIRE RISK ARISING OUT OF
27 *  USE OR PERFORMANCE OF THE SOFTWARE.
28 *
29 *  3.     TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM OR ITS
30 *  LICENSORS BE LIABLE FOR (i) CONSEQUENTIAL, INCIDENTAL, SPECIAL, INDIRECT, OR
31 *  EXEMPLARY DAMAGES WHATSOEVER ARISING OUT OF OR IN ANY WAY RELATING TO YOUR
32 *  USE OF OR INABILITY TO USE THE SOFTWARE EVEN IF BROADCOM HAS BEEN ADVISED OF
33 *  THE POSSIBILITY OF SUCH DAMAGES; OR (ii) ANY AMOUNT IN EXCESS OF THE AMOUNT
34 *  ACTUALLY PAID FOR THE SOFTWARE ITSELF OR U.S. $1, WHICHEVER IS GREATER. THESE
35 *  LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF
36 *  ANY LIMITED REMEDY.
37 *
38 * $brcm_Workfile: nexus_ccir656_output.h $
39 * $brcm_Revision: 2 $
40 * $brcm_Date: 7/25/11 3:00p $
41 *
42 * Module Description:
43 *
44 * Revision History:
45 *
46 * $brcm_Log: /nexus/modules/display/7400/include/nexus_ccir656_output.h $
47 *
48 * 2   7/25/11 3:00p jhaberf
49 * SWDTV-8043: added null_allowed attribute for some APIs
50 *
51 * PR53623/2   3/31/09 11:57a mward
52 * PR 53623: Dummy to prevent compiler warning.
53 *
54 * PR53623/1   3/31/09 10:26a mward
55 * PR 53623: 656 output support.
56 *
57 **************************************************************************/
58#ifndef NEXUS_CCIR656_OUTPUT_H__
59#define NEXUS_CCIR656_OUTPUT_H__
60
61#include "nexus_display_types.h"
62
63#ifdef __cplusplus
64extern "C" {
65#endif
66
67/**
68Summary:
69Handle for the CCIR-656 video output interface.
70**/
71typedef struct NEXUS_Ccir656Output *NEXUS_Ccir656OutputHandle;
72
73/**
74Summary:
75Settings for CCIR-656 video output interface
76**/
77typedef struct NEXUS_Ccir656OutputSettings
78{
79    struct {
80        /* TODO: see nexus_ccir656_input.h for 656 VBI formats. we may need to move that enum to core if they are needed. */
81        int dummy;
82    } vbi;
83} NEXUS_Ccir656OutputSettings;
84
85/*
86Summary:
87Get default settings for the structure.
88
89Description:
90This is required in order to make application code resilient to the addition of new strucutre members in the future.
91*/
92void NEXUS_Ccir656Output_GetDefaultSettings(
93    NEXUS_Ccir656OutputSettings *pSettings /* [out] */
94    );
95
96/**
97Summary:
98Open a new CCIR-656 video output interface
99**/
100NEXUS_Ccir656OutputHandle NEXUS_Ccir656Output_Open( /* attr{destructor=NEXUS_Ccir656Output_Close}  */
101    unsigned index,
102    const NEXUS_Ccir656OutputSettings *pSettings /* attr{null_allowed=y} */
103    );
104
105/**
106Summary:
107Close the CCIR-656 video output interface
108**/
109void NEXUS_Ccir656Output_Close(
110    NEXUS_Ccir656OutputHandle output
111    );
112
113/**
114Summary:
115Get current settings
116**/
117void NEXUS_Ccir656Output_GetSettings(
118    NEXUS_Ccir656OutputHandle output,
119    NEXUS_Ccir656OutputSettings *pSettings    /* [out] */
120    );
121
122/**
123Summary:
124Apply new settings
125**/
126NEXUS_Error NEXUS_Ccir656Output_SetSettings(
127    NEXUS_Ccir656OutputHandle output,
128    const NEXUS_Ccir656OutputSettings *pSettings
129    );
130
131/**
132Summary:
133Returns the abstract NEXUS_VideoOutput connector for this Interface.
134The NEXUS_VideoOutput connector is added to a Display in order to route that Displa's video to the output.
135
136Description:
137Used in NEXUS_Display_AddOutput
138**/
139NEXUS_VideoOutput NEXUS_Ccir656Output_GetConnector(
140    NEXUS_Ccir656OutputHandle output
141    );
142
143#ifdef __cplusplus
144}
145#endif
146
147#endif /* NEXUS_CCIR656_OUTPUT_H__ */
Note: See TracBrowser for help on using the repository browser.