[FFmpeg-cvslog] truespeech: remove unneeded variable, 'consumed'

Justin Ruggles git at videolan.org
Fri Oct 14 03:58:31 CEST 2011


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Thu Oct 13 00:21:17 2011 -0400| [6d55506c8bbe9f7b4dba244d40519832eff66c9b] | committer: Justin Ruggles

truespeech: remove unneeded variable, 'consumed'

increment the 'buf' pointer instead, and consume the whole packet.

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

 libavcodec/truespeech.c |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/libavcodec/truespeech.c b/libavcodec/truespeech.c
index c48a9c1..72d828a 100644
--- a/libavcodec/truespeech.c
+++ b/libavcodec/truespeech.c
@@ -310,7 +310,6 @@ static int truespeech_decode_frame(AVCodecContext *avctx,
 
     int i, j;
     short *samples = data;
-    int consumed = 0;
     int iterations, out_size;
 
     iterations = buf_size / 32;
@@ -330,8 +329,8 @@ static int truespeech_decode_frame(AVCodecContext *avctx,
     memset(samples, 0, out_size);
 
     for(j = 0; j < iterations; j++) {
-        truespeech_read_frame(c, buf + consumed);
-        consumed += 32;
+        truespeech_read_frame(c, buf);
+        buf += 32;
 
         truespeech_correlate_filter(c);
         truespeech_filters_merge(c);
@@ -349,7 +348,7 @@ static int truespeech_decode_frame(AVCodecContext *avctx,
 
     *data_size = out_size;
 
-    return consumed;
+    return buf_size;
 }
 
 AVCodec ff_truespeech_decoder = {



More information about the ffmpeg-cvslog mailing list