close Warning: Can't use blame annotator:
No changeset 2 in the repository

source: svn/newcon3bcm2_21bu/BSEAV/lib/utils/bsink_playback_debug.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.4 KB
RevLine 
1/***************************************************************************
2 *     Copyright (c) 2007 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: bsink_playback_debug.h $
11 * $brcm_Revision: 1 $
12 * $brcm_Date: 11/23/10 8:34p $
13 *
14 * Module Description:
15 *
16 * ATOM playback data sink
17 *
18 * Revision History:
19 *
20 * $brcm_Log: /BSEAV/lib/utils/bsink_playback_debug.h $
21 *
22 * 1   11/23/10 8:34p vsilyaev
23 * SW35230-2195: Format of the timed stream data
24 *
25 *     
26 ***************************************************************************/
27#ifndef __BSINK_PLAYBACK_DUMP_H__
28#define __BSINK_PLAYBACK_DUMP_H__
29
30#ifdef __cplusplus
31extern "C"
32{
33#endif
34
35/* size of the packet is always multipler of 4, if payload length is not multiplier of four, then packet is padded */
36#define BSINK_PLAYBACK_SYNC 0xBCDABEEF
37typedef struct bsink_playback_packet {
38    uint32_t sync; /* 0xBCDABEEF */
39    uint32_t timestamp; /* timestamp in ms */
40    uint32_t sequence; /* used to combine packet into the block */
41    uint32_t length; /*  length of payload */
42} bsink_playback_packet;
43
44
45#ifdef __cplusplus
46}
47#endif
48
49#endif /* __BSINK_PLAYBACK_DUMP_H__ */
50
Note: See TracBrowser for help on using the repository browser.