diff options
author | Oded Shimon <ods15@ods15.dyndns.org> | 2006-10-02 06:08:16 +0000 |
---|---|---|
committer | Oded Shimon <ods15@ods15.dyndns.org> | 2006-10-02 06:08:16 +0000 |
commit | 899124aa389bef235872a7fcfe7c94dab57365f2 (patch) | |
tree | c57f3d1077c204f2af35598479d7018d66a1f8df /libavcodec/vorbis_enc.c | |
parent | 4c588d8e9f595baa13666091144efbf54fbea00a (diff) | |
download | ffmpeg-899124aa389bef235872a7fcfe7c94dab57365f2.tar.gz |
Original Commit: r73 | ods15 | 2006-09-28 21:01:59 +0300 (Thu, 28 Sep 2006) | 2 lines
almost cosmetic, remove redundant variable
Originally committed as revision 6478 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vorbis_enc.c')
-rw-r--r-- | libavcodec/vorbis_enc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vorbis_enc.c b/libavcodec/vorbis_enc.c index 65da73bf44..fc7aac7111 100644 --- a/libavcodec/vorbis_enc.c +++ b/libavcodec/vorbis_enc.c @@ -842,9 +842,9 @@ static void residue_encode(venc_context_t * venc, residue_t * rc, PutBitContext } 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++; |