From 7f9f771eac0d37a632e0ed9bd89961d57fcfb7e0 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 22 Sep 2014 11:01:31 +0200 Subject: avcodec: Don't anonymously typedef structs --- libavcodec/g723_1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/g723_1.c') diff --git a/libavcodec/g723_1.c b/libavcodec/g723_1.c index bbdb404..f3879bd 100644 --- a/libavcodec/g723_1.c +++ b/libavcodec/g723_1.c @@ -55,7 +55,7 @@ enum Rate { /** * G723.1 unpacked data subframe */ -typedef struct { +typedef struct G723_1_Subframe { int ad_cb_lag; ///< adaptive codebook lag int ad_cb_gain; int dirac_train; @@ -68,7 +68,7 @@ typedef struct { /** * Pitch postfilter parameters */ -typedef struct { +typedef struct PPFParam { int index; ///< postfilter backward/forward lag int16_t opt_gain; ///< optimal gain int16_t sc_gain; ///< scaling gain -- cgit v1.1