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/cinepak.c | |
parent | daf8cf358a098a903d59adb6c0d0cc3262a8c93e (diff) | |
download | ffmpeg-7f9f771eac0d37a632e0ed9bd89961d57fcfb7e0.tar.gz |
avcodec: Don't anonymously typedef structs
Diffstat (limited to 'libavcodec/cinepak.c')
-rw-r--r-- | libavcodec/cinepak.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/cinepak.c b/libavcodec/cinepak.c index caf14cbfcf..3a740b22c1 100644 --- a/libavcodec/cinepak.c +++ b/libavcodec/cinepak.c @@ -40,14 +40,14 @@ #include "internal.h" -typedef struct { +typedef struct cvid_codebook { uint8_t y0, y1, y2, y3; uint8_t u, v; } cvid_codebook; #define MAX_STRIPS 32 -typedef struct { +typedef struct cvid_strip { uint16_t id; uint16_t x1, y1; uint16_t x2, y2; |