Mercurial > libavcodec.hg
changeset 3873:41bddab6a00b libavcodec
Original Commit: r73 | ods15 | 2006-09-28 21:01:59 +0300 (Thu, 28 Sep 2006) | 2 lines
almost cosmetic, remove redundant variable
author | ods15 |
---|---|
date | Mon, 02 Oct 2006 06:08:16 +0000 |
parents | 9f99e471bf72 |
children | 84890fea8074 |
files | vorbis_enc.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/vorbis_enc.c Mon Oct 02 06:08:14 2006 +0000 +++ b/vorbis_enc.c Mon Oct 02 06:08:16 2006 +0000 @@ -842,9 +842,9 @@ } else { for (k = 0; k < psize; k += book->ndimentions) { int dim = book->ndimentions, s = rc->begin + p * psize, l; - float vec[dim], * pvec = vec, * a; + float vec[dim], * a = vec; for (l = s + k; l < s + k + dim; l++) - *pvec++ = coeffs[(l % real_ch) * samples + l / real_ch]; + *a++ = coeffs[(l % real_ch) * samples + l / real_ch]; a = put_vector(book, pb, vec); for (l = s + k; l < s + k + dim; l++) coeffs[(l % real_ch) * samples + l / real_ch] -= *a++;