[FFmpeg-cvslog] wavpack: fix typos in previous cosmetic clean-up commit

Justin Ruggles git at videolan.org
Tue Jan 3 03:14:39 CET 2012


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Mon Jan  2 08:54:30 2012 -0500| [3a1867deac3112b925648b07737be26f4b13f33a] | committer: Justin Ruggles

wavpack: fix typos in previous cosmetic clean-up commit

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3a1867deac3112b925648b07737be26f4b13f33a
---

 libavcodec/wavpack.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/wavpack.c b/libavcodec/wavpack.c
index 6e90f51..6896877 100644
--- a/libavcodec/wavpack.c
+++ b/libavcodec/wavpack.c
@@ -759,7 +759,7 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
     void *samples = data;
     int samplecount;
     int got_terms   = 0, got_weights = 0, got_samples = 0,
-        got_entropy = 0, got_bs      = 0, got_float   = 0; got_hybrid = 0;
+        got_entropy = 0, got_bs      = 0, got_float   = 0, got_hybrid = 0;
     const uint8_t *orig_buf = buf;
     const uint8_t *buf_end  = buf + buf_size;
     int i, j, id, size, ssize, weights, t;
@@ -887,7 +887,7 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
                 continue;
             }
             t = 0;
-            for i = s->terms - 1; (i >= 0) && (t < size); i--) {
+            for (i = s->terms - 1; (i >= 0) && (t < size); i--) {
                 if (s->decorr[i].value > 8) {
                     s->decorr[i].samplesA[0] = wp_exp2(AV_RL16(buf)); buf += 2;
                     s->decorr[i].samplesA[1] = wp_exp2(AV_RL16(buf)); buf += 2;



More information about the ffmpeg-cvslog mailing list