Give all anonymously typedeffed structs in headers a name

Anonymous structs cannot be forward declared and have no benefit.
This commit is contained in:
Diego Biurrun 2012-09-27 10:19:53 +02:00
parent 76f644d9f7
commit e4cbf7529b
56 changed files with 114 additions and 114 deletions

View file

@ -41,7 +41,7 @@
#define MPC_FRAME_SIZE (BANDS * SAMPLES_PER_BAND)
/** Subband structure - hold all variables for each subband */
typedef struct {
typedef struct Band {
int msf; ///< mid-stereo flag
int res[2];
int scfi[2];
@ -49,7 +49,7 @@ typedef struct {
int Q[2];
}Band;
typedef struct {
typedef struct MPCContext {
AVFrame frame;
DSPContext dsp;
MPADSPContext mpadsp;