diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-11-19 17:05:44 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-11-26 16:25:06 -0500 |
commit | dd1b9f7cd9d80ae5aa691eadbee6315919a91341 (patch) | |
tree | 0cfc32d58a0abcd888419332507a1cefb76dc9cc /libavcodec/adxdec.c | |
parent | 3a83b2461e4ce9d48ad6ab037eb14569d0e53506 (diff) | |
download | ffmpeg-dd1b9f7cd9d80ae5aa691eadbee6315919a91341.tar.gz |
adx: rename struct PREV to ADXChannelState
Diffstat (limited to 'libavcodec/adxdec.c')
-rw-r--r-- | libavcodec/adxdec.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/adxdec.c b/libavcodec/adxdec.c index 79fcf13c31..0a9e60118e 100644 --- a/libavcodec/adxdec.c +++ b/libavcodec/adxdec.c @@ -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; |