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/ape.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/ape.c') diff --git a/libavformat/ape.c b/libavformat/ape.c index d967a5d660..09a756da60 100644 --- a/libavformat/ape.c +++ b/libavformat/ape.c @@ -42,7 +42,7 @@ #define APE_EXTRADATA_SIZE 6 -typedef struct { +typedef struct APEFrame { int64_t pos; int nblocks; int size; @@ -50,7 +50,7 @@ typedef struct { int64_t pts; } APEFrame; -typedef struct { +typedef struct APEContext { /* Derived fields */ uint32_t junklength; uint32_t firstframe; -- cgit v1.2.3