Author: andoma Date: Wed Mar 5 11:05:34 2008 New Revision: 1955 Log: Move SSR related structs close to each other. Modified: aac/aac.c Modified: aac/aac.c ============================================================================== --- aac/aac.c (original) +++ aac/aac.c Wed Mar 5 11:05:34 2008 @@ -205,6 +205,18 @@ typedef struct { int amp[4]; } pulse_struct; +/** + * Parameters for the SSR Inverse Polyphase Quadrature Filter + */ +typedef struct { + float q[4][4]; + float t0[4][12]; + float t1[4][12]; +} ssr_context; + +/** + * Per-element gain control for SSR + */ typedef struct { int max_band; int adjust_num[4][8]; @@ -254,12 +266,6 @@ typedef struct { } cc_struct; typedef struct { - float q[4][4]; - float t0[4][12]; - float t1[4][12]; -} ssr_context; - -typedef struct { // objects AVCodecContext * avccontext; VLC mainvlc;
participants (1)
-
andoma