aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/ra144.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-05-15 18:28:24 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-05-15 18:28:24 +0000
commitdbef8b1c843453f25966b6ba74eddd5ac806fdb8 (patch)
treee6a99248c16600a495c71a9f1abe791c91bf49d6 /libavcodec/ra144.c
parent2270b4b2dad785036fa9135726e9809613256d3c (diff)
downloadffmpeg-dbef8b1c843453f25966b6ba74eddd5ac806fdb8.tar.gz
The first table of decodetable[] is unrelated to the other. Rename it.
Originally committed as revision 13159 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ra144.c')
-rw-r--r--libavcodec/ra144.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c
index 80ecba636b..5d03f5a8c8 100644
--- a/libavcodec/ra144.c
+++ b/libavcodec/ra144.c
@@ -456,9 +456,9 @@ static int ra144_decode_frame(AVCodecContext * avctx,
unpack_input(buf, glob->unpacked);
glob->iptr = glob->unpacked;
- glob->val = decodetable[0][(*(glob->iptr++)) << 1];
+ glob->val = decodeval[(*(glob->iptr++)) << 1];
- dptr = decodetable + 1;
+ dptr = decodetable;
lptr = glob->swapbuf1;
while (lptr<glob->swapbuf1 + 10)