diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-05-25 16:44:56 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-05-25 16:44:56 +0000 |
commit | 14ff7cceeb1ffac01a84277b46b18f7329037593 (patch) | |
tree | c08dc22a29560f9d6a87ee8dd75c6e19b3ac7ee4 | |
parent | cdc15adf166bbb9aecaa63ad39a7d6891be63436 (diff) | |
download | ffmpeg-14ff7cceeb1ffac01a84277b46b18f7329037593.tar.gz |
Cosmetics: merge declaration and initialization
Originally committed as revision 13389 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ra144.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index bd4f621db6..1fd4f522b0 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -292,13 +292,11 @@ static int dec2(signed short *decsp, const int *data, const int *inp, { unsigned const int *ptr1,*ptr2; int work[10]; - int b; + int b = NBLOCKS - a; int x; int result; unsigned short *sptr = decsp; - b = NBLOCKS - a; - ptr1 = inp; ptr2 = inp2; |