summaryrefslogtreecommitdiff
path: root/libavcodec/adx.h
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/adx.h
parent3a83b2461e4ce9d48ad6ab037eb14569d0e53506 (diff)
adx: rename struct PREV to ADXChannelState
Diffstat (limited to 'libavcodec/adx.h')
-rw-r--r--libavcodec/adx.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/adx.h b/libavcodec/adx.h
index c4206963d5..bba09aed8b 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;