]> git.sesse.net Git - ffmpeg/commitdiff
Reindent after last commit.
authorCarl Eugen Hoyos <cehoyos@ag.or.at>
Wed, 15 Jun 2011 08:58:25 +0000 (10:58 +0200)
committerCarl Eugen Hoyos <cehoyos@ag.or.at>
Wed, 15 Jun 2011 08:58:25 +0000 (10:58 +0200)
libavcodec/aacenc.c

index 16c59061dc04afe7bb88d125b3acf34d27a3f5e4..0de6622389ef90eb7fbad67f32a584ced63fec70 100644 (file)
@@ -509,8 +509,8 @@ static int aac_encode_frame(AVCodecContext *avctx,
     if (data) {
         if (!s->psypp) {
             if (avctx->channels <= 2) {
-            memcpy(s->samples + 1024 * avctx->channels, data,
-                   1024 * avctx->channels * sizeof(s->samples[0]));
+                memcpy(s->samples + 1024 * avctx->channels, data,
+                       1024 * avctx->channels * sizeof(s->samples[0]));
             } else {
                 for (i = 0; i < 1024; i++)
                     for (ch = 0; ch < avctx->channels; ch++)