adx: rename struct PREV to ADXChannelState

This commit is contained in:
Justin Ruggles 2011-11-19 17:05:44 -05:00
parent 3a83b2461e
commit dd1b9f7cd9
3 changed files with 8 additions and 5 deletions

View File

@ -33,10 +33,10 @@
typedef struct {
int s1,s2;
} PREV;
} ADXChannelState;
typedef struct {
PREV prev[2];
ADXChannelState prev[2];
int header_parsed;
unsigned char dec_temp[18*2];
int in_temp;

View File

@ -40,7 +40,8 @@ static av_cold int adx_decode_init(AVCodecContext *avctx)
/* 18 bytes <-> 32 samples */
static void adx_decode(short *out,const unsigned char *in,PREV *prev)
static void adx_decode(short *out,const unsigned char *in,
ADXChannelState *prev)
{
int scale = AV_RB16(in);
int i;
@ -73,7 +74,8 @@ static void adx_decode(short *out,const unsigned char *in,PREV *prev)
}
static void adx_decode_stereo(short *out,const unsigned char *in,PREV *prev)
static void adx_decode_stereo(short *out,const unsigned char *in,
ADXChannelState *prev)
{
short tmp[32*2];
int i;

View File

@ -34,7 +34,8 @@
/* 18 bytes <-> 32 samples */
static void adx_encode(unsigned char *adx,const short *wav,PREV *prev)
static void adx_encode(unsigned char *adx,const short *wav,
ADXChannelState *prev)
{
int scale;
int i;