diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-06-15 10:58:25 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-06-15 10:58:25 +0200 |
commit | dbf23d191a808734679bd7d0c8737c082ad24a72 (patch) | |
tree | 92605d57ee6eb29e66bb5a8ca7c39670d6ab4a33 | |
parent | b3452771c4550b46ea54d15be6cfe8cc10585199 (diff) | |
download | ffmpeg-dbf23d191a808734679bd7d0c8737c082ad24a72.tar.gz |
Reindent after last commit.
-rw-r--r-- | libavcodec/aacenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c index 16c59061dc..0de6622389 100644 --- a/libavcodec/aacenc.c +++ b/libavcodec/aacenc.c @@ -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++) |