|
Last change
on this file was
76,
checked in by megakiss, 10 years ago
|
|
1W 대기전력을 만족시키기 위하여 POWEROFF시 튜너를 Standby 상태로 함
|
|
File size:
668 bytes
|
| Rev | Line | |
|---|
| 1 | #ifndef __DST_BIT_BUFFER_H__ |
|---|
| 2 | #define __DST_BIT_BUFFER_H__ |
|---|
| 3 | |
|---|
| 4 | #include "DST_Common.h" |
|---|
| 5 | |
|---|
| 6 | /*typedef struct bitBuffer bitBuffer_t, *bitBufferPtr_t;*/ |
|---|
| 7 | typedef struct bitBuffer bitBuffer_t; |
|---|
| 8 | typedef struct bitBuffer * bitBufferPtr_t; |
|---|
| 9 | |
|---|
| 10 | /* API */ |
|---|
| 11 | int bitBufferCreate ( bitBufferPtr_t *instance, DS_U8 *buffer, DS_U32 bufSize); |
|---|
| 12 | int bitBufferDestroy ( bitBufferPtr_t instance); |
|---|
| 13 | DS_U32 bitBufferGetBits (bitBufferPtr_t instance, DS_U8 numberOfBits); |
|---|
| 14 | void bitBufferSkipBits (bitBufferPtr_t instance, DS_U16 numberOfBits); |
|---|
| 15 | DS_U8* bitBufferGetBytePointer (bitBufferPtr_t instance); |
|---|
| 16 | bool bitBufferCheckError (bitBufferPtr_t instance);\ |
|---|
| 17 | |
|---|
| 18 | #endif // __DST_BIT_BUFFER_H__ |
|---|
Note: See
TracBrowser
for help on using the repository browser.