Commit 289c967a authored by ods15's avatar ods15

Original Commit: r72 | ods15 | 2006-09-28 21:00:47 +0300 (Thu, 28 Sep 2006) | 2 lines

cosmetic

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6477 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a87d2af2
...@@ -834,11 +834,11 @@ static void residue_encode(venc_context_t * venc, residue_t * rc, PutBitContext ...@@ -834,11 +834,11 @@ static void residue_encode(venc_context_t * venc, residue_t * rc, PutBitContext
assert(!(psize % book->ndimentions)); assert(!(psize % book->ndimentions));
if (rc->type == 0) { if (rc->type == 0) {
for (k = 0; k < psize; k += book->ndimentions) { for (k = 0; k < psize; k += book->ndimentions) {
float * a = put_vector(book, pb, &buf[k]); float * a = put_vector(book, pb, &buf[k]);
int l; int l;
for (l = 0; l < book->ndimentions; l++) buf[k + l] -= a[l]; for (l = 0; l < book->ndimentions; l++) buf[k + l] -= a[l];
} }
} else { } else {
for (k = 0; k < psize; k += book->ndimentions) { for (k = 0; k < psize; k += book->ndimentions) {
int dim = book->ndimentions, s = rc->begin + p * psize, l; int dim = book->ndimentions, s = rc->begin + p * psize, l;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment