From dd1b9f7cd9d80ae5aa691eadbee6315919a91341 Mon Sep 17 00:00:00 2001 From: Justin Ruggles Date: Sat, 19 Nov 2011 17:05:44 -0500 Subject: [PATCH] adx: rename struct PREV to ADXChannelState --- libavcodec/adx.h | 4 ++-- libavcodec/adxdec.c | 6 ++++-- libavcodec/adxenc.c | 3 ++- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/libavcodec/adx.h b/libavcodec/adx.h index c4206963d5d..bba09aed8b3 100644 --- a/libavcodec/adx.h +++ b/libavcodec/adx.h @@ -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; diff --git a/libavcodec/adxdec.c b/libavcodec/adxdec.c index 79fcf13c31f..0a9e60118ef 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; diff --git a/libavcodec/adxenc.c b/libavcodec/adxenc.c index 61ba07a35d5..fde0b8239e3 100644 --- a/libavcodec/adxenc.c +++ b/libavcodec/adxenc.c @@ -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; -- 2.39.2