提交 dd1b9f7c 编写于 作者: J Justin Ruggles

adx: rename struct PREV to ADXChannelState

上级 3a83b246
......@@ -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;
......
......@@ -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;
......
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册