mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 19:24:06 +00:00
Rename struct bitstream_base to bitstream_base_t.
This commit is contained in:
parent
5d8498dc88
commit
106c9128ad
|
@ -37,7 +37,7 @@ typedef enum {BITSTREAM_TYPE_FILE, BITSTREAM_TYPE_MEMORY} bitstream_type;
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
BASE_BITSTREAM
|
BASE_BITSTREAM
|
||||||
} bitstream_base;
|
} bitstream_base_t;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
@ -55,7 +55,7 @@ typedef struct
|
||||||
|
|
||||||
typedef union
|
typedef union
|
||||||
{
|
{
|
||||||
bitstream_base base;
|
bitstream_base_t base;
|
||||||
bitstream_file file;
|
bitstream_file file;
|
||||||
bitstream_mem mem;
|
bitstream_mem mem;
|
||||||
} bitstream_t;
|
} bitstream_t;
|
||||||
|
|
Loading…
Reference in a new issue