diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-09-22 11:01:31 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2015-02-14 10:13:49 -0800 |
commit | 7f9f771eac0d37a632e0ed9bd89961d57fcfb7e0 (patch) | |
tree | 5468ce1ec8288ea779ea3754620d6bddcf22e918 /libavcodec/bitstream.c | |
parent | daf8cf358a098a903d59adb6c0d0cc3262a8c93e (diff) | |
download | ffmpeg-7f9f771eac0d37a632e0ed9bd89961d57fcfb7e0.tar.gz |
avcodec: Don't anonymously typedef structs
Diffstat (limited to 'libavcodec/bitstream.c')
-rw-r--r-- | libavcodec/bitstream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bitstream.c b/libavcodec/bitstream.c index 8e9f657b7f..f36997ea40 100644 --- a/libavcodec/bitstream.c +++ b/libavcodec/bitstream.c @@ -129,7 +129,7 @@ static av_always_inline uint32_t bitswap_32(uint32_t x) (uint32_t)ff_reverse[ x >> 24]; } -typedef struct { +typedef struct VLCcode { uint8_t bits; uint16_t symbol; /** codeword, with the first bit-to-be-read in the msb |