[FFmpeg-cvslog] libspeexdec: cosmetics: reindent

Justin Ruggles git at videolan.org
Sat Oct 22 01:26:51 CEST 2011


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Fri Oct 21 12:10:35 2011 -0400| [14bc60dbaeb10cb95bd47902067984de88e0315e] | committer: Justin Ruggles

libspeexdec: cosmetics: reindent

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

 libavcodec/libspeexdec.c |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/libavcodec/libspeexdec.c b/libavcodec/libspeexdec.c
index fc90308..6974229 100644
--- a/libavcodec/libspeexdec.c
+++ b/libavcodec/libspeexdec.c
@@ -125,13 +125,13 @@ static int libspeex_decode_frame(AVCodecContext *avctx,
     }
 
     /* decode a single frame */
-        ret = speex_decode_int(s->dec_state, &s->bits, output);
-        if (ret <= -2) {
-            av_log(avctx, AV_LOG_ERROR, "Error decoding Speex frame.\n");
-            return -1;
-        }
-        if (avctx->channels == 2)
-            speex_decode_stereo_int(output, s->frame_size, &s->stereo);
+    ret = speex_decode_int(s->dec_state, &s->bits, output);
+    if (ret <= -2) {
+        av_log(avctx, AV_LOG_ERROR, "Error decoding Speex frame.\n");
+        return -1;
+    }
+    if (avctx->channels == 2)
+        speex_decode_stereo_int(output, s->frame_size, &s->stereo);
 
     *data_size = out_size;
     return consumed;



More information about the ffmpeg-cvslog mailing list