From daf8cf358a098a903d59adb6c0d0cc3262a8c93e Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 22 Sep 2014 09:19:33 +0200 Subject: avformat: Don't anonymously typedef structs --- libavformat/c93.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/c93.c') diff --git a/libavformat/c93.c b/libavformat/c93.c index 3f2a98fcc4..fdb7a87a2a 100644 --- a/libavformat/c93.c +++ b/libavformat/c93.c @@ -24,13 +24,13 @@ #include "voc.h" #include "libavutil/intreadwrite.h" -typedef struct { +typedef struct C93BlockRecord { uint16_t index; uint8_t length; uint8_t frames; } C93BlockRecord; -typedef struct { +typedef struct C93DemuxContext { VocDecContext voc; C93BlockRecord block_records[512]; -- cgit v1.2.3