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/adx.h | |
parent | 3a83b2461e4ce9d48ad6ab037eb14569d0e53506 (diff) | |
download | ffmpeg-dd1b9f7cd9d80ae5aa691eadbee6315919a91341.tar.gz |
adx: rename struct PREV to ADXChannelState
Diffstat (limited to 'libavcodec/adx.h')
-rw-r--r-- | libavcodec/adx.h | 4 |
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; |