[FFmpeg-cvslog] adpcm: reindent after previous commit

Paul B Mahol git at videolan.org
Mon Nov 12 13:00:36 CET 2012


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Wed Nov  7 18:07:39 2012 +0000| [0cbb31a26485d567f92fdf35838b1fd248003cd6] | committer: Paul B Mahol

adpcm: reindent after previous commit

Signed-off-by: Paul B Mahol <onemda at gmail.com>

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

 libavcodec/adpcm.c |   16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c
index 0504ab3..98b65dd 100644
--- a/libavcodec/adpcm.c
+++ b/libavcodec/adpcm.c
@@ -1154,14 +1154,14 @@ static int adpcm_decode_frame(AVCodecContext *avctx, void *data,
         break;
     case AV_CODEC_ID_ADPCM_IMA_SMJPEG:
         for (i = 0; i < avctx->channels; i++) {
-        c->status[i].predictor = sign_extend(bytestream2_get_be16u(&gb), 16);
-        c->status[i].step_index = bytestream2_get_byteu(&gb);
-        bytestream2_skipu(&gb, 1);
-        if (c->status[i].step_index > 88u) {
-            av_log(avctx, AV_LOG_ERROR, "ERROR: step_index = %i\n",
-                   c->status[i].step_index);
-            return AVERROR_INVALIDDATA;
-        }
+            c->status[i].predictor = sign_extend(bytestream2_get_be16u(&gb), 16);
+            c->status[i].step_index = bytestream2_get_byteu(&gb);
+            bytestream2_skipu(&gb, 1);
+            if (c->status[i].step_index > 88u) {
+                av_log(avctx, AV_LOG_ERROR, "ERROR: step_index = %i\n",
+                       c->status[i].step_index);
+                return AVERROR_INVALIDDATA;
+            }
         }
 
         for (n = nb_samples >> (1 - st); n > 0; n--) {



More information about the ffmpeg-cvslog mailing list