source: svn/newcon3bcm2_21bu/magnum/syslib/synclib/7552/bsynclib_stubs.c @ 66

Last change on this file since 66 was 66, checked in by megakiss, 11 years ago

키패드 기능 연결

전원키 누르고 리모콘 누르면 학습
CH+ 간격 1초 증가 MAX:15
CH- 간격 1초 감소 MIN :1

  • Property svn:executable set to *
File size: 5.8 KB
Line 
1/***************************************************************************
2*     Copyright (c) 2004-2008, 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: bsynclib_stubs.c $
11* $brcm_Revision: Hydra_Software_Devel/1 $
12* $brcm_Date: 3/24/08 3:09p $
13*
14* Revision History:
15*
16* $brcm_Log: /magnum/syslib/synclib/noarch/bsynclib_stubs.c $
17*
18* Hydra_Software_Devel/1   3/24/08 3:09p bandrews
19* PR40865: Fixed
20*
21* Hydra_Software_Devel/5   1/3/08 5:30p bandrews
22* PR37951: Updated with API changes
23*
24* Hydra_Software_Devel/4   12/17/07 6:58p bandrews
25* PR37951: Stubs compile errors
26*
27* Hydra_Software_Devel/3   12/17/07 3:44p bandrews
28* PR37951: Moved test stubs to test dir
29*
30* Hydra_Software_Devel/2   12/7/07 3:09p bandrews
31* PR37951: Fixed timer references
32*
33* Hydra_Software_Devel/1   12/5/07 10:59p bandrews
34* PR37951: Check in stubs for external work
35***************************************************************************/
36
37#include "bstd.h"
38#include "bsynclib.h"
39
40BDBG_MODULE(synclib_stubs);
41
42void BSYNClib_GetDefaultSettings
43(
44        BSYNClib_Settings * psSettings /* [out] */
45)
46{
47        BSTD_UNUSED(psSettings);
48}
49
50BERR_Code BSYNClib_Open
51(
52        const BSYNClib_Settings * psSettings,
53        BSYNClib_Handle * phSync /* [out] */
54)
55{
56        BSTD_UNUSED(psSettings);
57        BSTD_UNUSED(phSync);
58        return BERR_SUCCESS;
59}
60
61void BSYNClib_Close
62(
63        BSYNClib_Handle hSync
64)
65{
66        BSTD_UNUSED(hSync);
67}
68
69void BSYNClib_GetChannelDefaultSettings
70(
71        BSYNClib_Channel_Settings * psSettings /* [out] */
72)
73{
74        BSTD_UNUSED(psSettings);
75}
76
77BERR_Code BSYNClib_CreateChannel
78(
79        BSYNClib_Handle hSync, 
80        const BSYNClib_Channel_Settings * psSettings, 
81        BSYNClib_Channel_Handle * phChn /* [out] */
82)
83{
84        BSTD_UNUSED(hSync);
85        BSTD_UNUSED(psSettings);
86        BSTD_UNUSED(phChn);
87        return BERR_SUCCESS;
88}
89
90void BSYNClib_DestroyChannel
91(
92        BSYNClib_Handle hSync, 
93        BSYNClib_Channel_Handle hChn
94)
95{
96        BSTD_UNUSED(hSync);
97        BSTD_UNUSED(hChn);
98}
99
100void BSYNClib_Channel_GetSettings
101(
102        const BSYNClib_Channel_Handle hChn,
103        BSYNClib_Channel_Settings * psSettings /* [out] */
104)
105{
106        BSTD_UNUSED(hChn);
107        BSTD_UNUSED(psSettings);
108}
109
110BERR_Code BSYNClib_Channel_SetSettings
111(
112        BSYNClib_Channel_Handle hChn,
113        const BSYNClib_Channel_Settings * psSettings
114)
115{
116        BSTD_UNUSED(hChn);
117        BSTD_UNUSED(psSettings);
118        return BERR_SUCCESS;
119}
120
121void BSYNClib_Channel_GetConfig
122(
123        const BSYNClib_Channel_Handle hChn,
124        BSYNClib_Channel_Config * psConfig /* [out] */
125)
126{
127        BSTD_UNUSED(hChn);
128        BSTD_UNUSED(psConfig);
129}
130
131BERR_Code BSYNClib_Channel_SetConfig
132(
133        BSYNClib_Channel_Handle hChn,
134        const BSYNClib_Channel_Config * psConfig
135)
136{
137        BSTD_UNUSED(hChn);
138        BSTD_UNUSED(psConfig);
139        return BERR_SUCCESS;
140}
141
142void BSYNClib_Channel_GetStatus
143(
144        const BSYNClib_Channel_Handle hChn, 
145        BSYNClib_Channel_Status * psStatus /* [out] */
146)
147{
148        BSTD_UNUSED(hChn);
149        BSTD_UNUSED(psStatus);
150}
151
152void BSYNClib_Channel_GetVideoSourceConfig_isr
153(
154        const BSYNClib_Channel_Handle hChn,
155        unsigned int uiSource,
156        BSYNClib_VideoSource_Config * psConfig /* [out] */
157)
158{
159        BSTD_UNUSED(hChn);
160        BSTD_UNUSED(uiSource);
161        BSTD_UNUSED(psConfig);
162}
163
164BERR_Code BSYNClib_Channel_SetVideoSourceConfig_isr
165(
166        BSYNClib_Channel_Handle hChn,
167        unsigned int uiSource,
168        const BSYNClib_VideoSource_Config * psConfig
169)
170{
171        BSTD_UNUSED(hChn);
172        BSTD_UNUSED(uiSource);
173        BSTD_UNUSED(psConfig);
174        return BERR_SUCCESS;
175}
176
177void BSYNClib_Channel_GetVideoSinkConfig_isr
178(
179        const BSYNClib_Channel_Handle hChn,
180        unsigned int uiSink,
181        BSYNClib_VideoSink_Config * psConfig /* [out] */
182)
183{
184        BSTD_UNUSED(hChn);
185        BSTD_UNUSED(uiSink);
186        BSTD_UNUSED(psConfig);
187}
188
189BERR_Code BSYNClib_Channel_SetVideoSinkConfig_isr
190(
191        BSYNClib_Channel_Handle hChn,
192        unsigned int uiSink,
193        const BSYNClib_VideoSink_Config * psConfig
194)
195{
196        BSTD_UNUSED(hChn);
197        BSTD_UNUSED(uiSink);
198        BSTD_UNUSED(psConfig);
199        return BERR_SUCCESS;
200}
201
202void BSYNClib_Channel_GetAudioSourceConfig_isr
203(
204        const BSYNClib_Channel_Handle hChn,
205        unsigned int uiSource,
206        BSYNClib_AudioSource_Config * psConfig /* [out] */
207)
208{
209        BSTD_UNUSED(hChn);
210        BSTD_UNUSED(uiSource);
211        BSTD_UNUSED(psConfig);
212}
213
214BERR_Code BSYNClib_Channel_SetAudioSourceConfig_isr
215(
216        BSYNClib_Channel_Handle hChn,
217        unsigned int uiSource,
218        const BSYNClib_AudioSource_Config * psConfig
219)
220{
221        BSTD_UNUSED(hChn);
222        BSTD_UNUSED(uiSource);
223        BSTD_UNUSED(psConfig);
224        return BERR_SUCCESS;
225}
226
227void BSYNClib_Channel_GetAudioSinkConfig_isr
228(
229        const BSYNClib_Channel_Handle hChn,
230        unsigned int uiSink,
231        BSYNClib_AudioSink_Config * psConfig /* [out] */
232)
233{
234        BSTD_UNUSED(hChn);
235        BSTD_UNUSED(uiSink);
236        BSTD_UNUSED(psConfig);
237}
238
239BERR_Code BSYNClib_Channel_SetAudioSinkConfig_isr
240(
241        BSYNClib_Channel_Handle hChn,
242        unsigned int uiSink,
243        const BSYNClib_AudioSink_Config * psConfig
244)
245{
246        BSTD_UNUSED(hChn);
247        BSTD_UNUSED(uiSink);
248        BSTD_UNUSED(psConfig);
249        return BERR_SUCCESS;
250}
251
252void BSYNClib_Channel_GetVideoSourceStatus
253(
254        const BSYNClib_Channel_Handle hChn,
255        unsigned int uiSource,
256        BSYNClib_Source_Status * psStatus /* [out] */
257)
258{
259        BSTD_UNUSED(hChn);
260        BSTD_UNUSED(uiSource);
261        BSTD_UNUSED(psStatus);
262}
263
264void BSYNClib_Channel_GetVideoSinkStatus
265(
266        const BSYNClib_Channel_Handle hChn,
267        unsigned int uiSink,
268        BSYNClib_Sink_Status * psStatus /* [out] */
269)
270{
271        BSTD_UNUSED(hChn);
272        BSTD_UNUSED(uiSink);
273        BSTD_UNUSED(psStatus);
274}
275
276void BSYNClib_Channel_GetAudioSourceStatus
277(
278        const BSYNClib_Channel_Handle hChn,
279        unsigned int uiSource,
280        BSYNClib_Source_Status * psStatus /* [out] */
281)
282{
283        BSTD_UNUSED(hChn);
284        BSTD_UNUSED(uiSource);
285        BSTD_UNUSED(psStatus);
286}
287
288void BSYNClib_Channel_GetAudioSinkStatus
289(
290        const BSYNClib_Channel_Handle hChn,
291        unsigned int uiSink,
292        BSYNClib_Sink_Status * psStatus /* [out] */
293)
294{
295        BSTD_UNUSED(hChn);
296        BSTD_UNUSED(uiSink);
297        BSTD_UNUSED(psStatus);
298}
299
Note: See TracBrowser for help on using the repository browser.