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/mpc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/mpc.c') diff --git a/libavformat/mpc.c b/libavformat/mpc.c index 5e771ae4aa..1c8a295863 100644 --- a/libavformat/mpc.c +++ b/libavformat/mpc.c @@ -31,12 +31,12 @@ #define DELAY_FRAMES 32 static const int mpc_rate[4] = { 44100, 48000, 37800, 32000 }; -typedef struct { +typedef struct MPCFrame { int64_t pos; int size, skip; }MPCFrame; -typedef struct { +typedef struct MPCContext { int ver; uint32_t curframe, lastframe; uint32_t fcount; -- cgit v1.2.3