Rename struct bitstream_base to bitstream_base_t.

This commit is contained in:
Ari Koivula 2015-03-04 13:21:35 +02:00
parent 5d8498dc88
commit 106c9128ad

View file

@ -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;