diff options
author | Oded Shimon <ods15@ods15.dyndns.org> | 2006-10-02 06:08:14 +0000 |
---|---|---|
committer | Oded Shimon <ods15@ods15.dyndns.org> | 2006-10-02 06:08:14 +0000 |
commit | 4c588d8e9f595baa13666091144efbf54fbea00a (patch) | |
tree | c1992b0e81ff7bb3cf7baebc184cdd2ed8ec6af2 /libavcodec/vorbis_enc.c | |
parent | e3df7fc64c1cbadc9462b7dd8adaf811070d3086 (diff) | |
download | ffmpeg-4c588d8e9f595baa13666091144efbf54fbea00a.tar.gz |
Original Commit: r72 | ods15 | 2006-09-28 21:00:47 +0300 (Thu, 28 Sep 2006) | 2 lines
cosmetic
Originally committed as revision 6477 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vorbis_enc.c')
-rw-r--r-- | libavcodec/vorbis_enc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/vorbis_enc.c b/libavcodec/vorbis_enc.c index 2366840d56..65da73bf44 100644 --- a/libavcodec/vorbis_enc.c +++ b/libavcodec/vorbis_enc.c @@ -834,11 +834,11 @@ static void residue_encode(venc_context_t * venc, residue_t * rc, PutBitContext assert(!(psize % book->ndimentions)); if (rc->type == 0) { - for (k = 0; k < psize; k += book->ndimentions) { - float * a = put_vector(book, pb, &buf[k]); - int l; - for (l = 0; l < book->ndimentions; l++) buf[k + l] -= a[l]; - } + for (k = 0; k < psize; k += book->ndimentions) { + float * a = put_vector(book, pb, &buf[k]); + int l; + for (l = 0; l < book->ndimentions; l++) buf[k + l] -= a[l]; + } } else { for (k = 0; k < psize; k += book->ndimentions) { int dim = book->ndimentions, s = rc->begin + p * psize, l; |