-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbit_stream.h
69 lines (52 loc) · 2.43 KB
/
bit_stream.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#ifndef BITSTREAM_H_INCLUDED
#define BITSTREAM_H_INCLUDED
#include <stdint.h>
#include <stdio.h>
/* BitStream_Seek関数の探索コード */
#define BITSTREAM_SEEK_SET (int32_t)SEEK_SET
#define BITSTREAM_SEEK_CUR (int32_t)SEEK_CUR
#define BITSTREAM_SEEK_END (int32_t)SEEK_END
/* ビットストリーム構造体 */
struct BitStream;
/* API結果型 */
typedef enum BitStreamApiResultTag {
BITSTREAM_APIRESULT_OK = 0, /* 成功 */
BITSTREAM_APIRESULT_NG, /* 分類不能なエラー */
BITSTREAM_APIRESULT_INVALID_ARGUMENT, /* 不正な引数 */
BITSTREAM_APIRESULT_INVALID_MODE, /* 不正なモード */
BITSTREAM_APIRESULT_IOERROR, /* 分類不能なI/Oエラー */
BITSTREAM_APIRESULT_EOS /* ストリーム終端に達している */
} BitStreamApiResult;
#ifdef __cplusplus
extern "C" {
#endif
/* ビットストリーム構造体生成に必要なワークサイズ計算 */
int32_t BitStream_CalculateWorkSize(void);
/* ビットストリームのオープン */
struct BitStream* BitStream_Open(const char* filepath,
const char *mode, void *work, int32_t work_size);
/* ビットストリームのクローズ */
void BitStream_Close(struct BitStream* stream);
/* シーク(fseek準拠)
* 注意)バッファをクリアするので副作用がある */
BitStreamApiResult BitStream_Seek(struct BitStream* stream, int32_t offset, int32_t wherefrom);
/* 現在位置(ftell)準拠 */
BitStreamApiResult BitStream_Tell(struct BitStream* stream, int32_t* result);
/* 1bit出力 */
BitStreamApiResult BitStream_PutBit(struct BitStream* stream, uint8_t bit);
/*
* valの右側(下位)n_bits 出力(最大64bit出力可能)
* BitStream_PutBits(stream, 3, 6);は次と同じ:
* BitStream_PutBit(stream, 1); BitStream_PutBit(stream, 1); BitStream_PutBit(stream, 0);
*/
BitStreamApiResult BitStream_PutBits(struct BitStream* stream, uint32_t n_bits, uint64_t val);
/* 1bit取得 */
BitStreamApiResult BitStream_GetBit(struct BitStream* stream, uint8_t* bit);
/* n_bits 取得(最大64bit)し、その値を右詰めして出力 */
BitStreamApiResult BitStream_GetBits(struct BitStream* stream, uint32_t n_bits, uint64_t *val);
/* バッファにたまったビットをクリア */
BitStreamApiResult BitStream_Flush(struct BitStream* stream);
#ifdef __cplusplus
}
#endif
#endif /* BITSTREAM_H_INCLUDED */