[FFmpeg-cvslog] adpcm/thp: cosmetics: reindent

Paul B Mahol git at videolan.org
Fri Nov 30 11:51:39 CET 2012


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Fri Nov 30 10:48:37 2012 +0000| [d4c59f77b683bd3843df34c07b1c9a0241ba882c] | committer: Paul B Mahol

adpcm/thp: cosmetics: reindent

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

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

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

diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c
index c182e6f..fd308a9 100644
--- a/libavcodec/adpcm.c
+++ b/libavcodec/adpcm.c
@@ -1331,8 +1331,8 @@ static int adpcm_decode_frame(AVCodecContext *avctx, void *data,
 
         /* Initialize the previous sample.  */
         for (i = 0; i < avctx->channels; i++) {
-                c->status[i].sample1 = sign_extend(bytestream2_get_be16u(&gb), 16);
-                c->status[i].sample2 = sign_extend(bytestream2_get_be16u(&gb), 16);
+            c->status[i].sample1 = sign_extend(bytestream2_get_be16u(&gb), 16);
+            c->status[i].sample2 = sign_extend(bytestream2_get_be16u(&gb), 16);
         }
 
         for (ch = 0; ch < avctx->channels; ch++) {



More information about the ffmpeg-cvslog mailing list