summaryrefslogtreecommitdiff
path: root/libavcodec/adxenc.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2011-11-19 17:05:44 -0500
committerJustin Ruggles <justin.ruggles@gmail.com>2011-11-26 16:25:06 -0500
commitdd1b9f7cd9d80ae5aa691eadbee6315919a91341 (patch)
tree0cfc32d58a0abcd888419332507a1cefb76dc9cc /libavcodec/adxenc.c
parent3a83b2461e4ce9d48ad6ab037eb14569d0e53506 (diff)
adx: rename struct PREV to ADXChannelState
Diffstat (limited to 'libavcodec/adxenc.c')
-rw-r--r--libavcodec/adxenc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/adxenc.c b/libavcodec/adxenc.c
index 61ba07a35d..fde0b8239e 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;