diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2007-08-07 12:53:22 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2007-08-07 12:53:22 +0000 |
commit | 92df8910015421fc0a65905a73ba323dd3391f28 (patch) | |
tree | 35559f7efafcf95b2f291dd35a7763075cf5346e | |
parent | db695867ebf174cd04f37aa69e907fe8dc7ba314 (diff) | |
download | ffmpeg-92df8910015421fc0a65905a73ba323dd3391f28.tar.gz |
More indentation
Originally committed as revision 9979 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/alac.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/alac.c b/libavcodec/alac.c index c69b07c010..43efa79006 100644 --- a/libavcodec/alac.c +++ b/libavcodec/alac.c @@ -599,11 +599,11 @@ static int alac_decode_frame(AVCodecContext *avctx, case 16: if (channels == 2) { reconstruct_stereo_16(alac->outputsamples_buffer, - (int16_t*)outbuffer, - alac->numchannels, - outputsamples, - interlacing_shift, - interlacing_leftweight); + (int16_t*)outbuffer, + alac->numchannels, + outputsamples, + interlacing_shift, + interlacing_leftweight); } else { int i; for (i = 0; i < outputsamples; i++) { |