summaryrefslogtreecommitdiffstats
path: root/libavcodec/adpcm.c
diff options
context:
space:
mode:
authorRodger Combs <rodger.combs@gmail.com>2015-06-20 05:01:18 -0500
committerMichael Niedermayer <michaelni@gmx.at>2015-06-21 00:34:21 +0200
commit631d56ffc823e773fb3db528b36647d067f18db3 (patch)
treee6dbbf136d191f8b93c214e6e54c137dd1570fc6 /libavcodec/adpcm.c
parente70fd57de5ea079178c862a66727f8294e5380bd (diff)
downloadffmpeg-streaming-631d56ffc823e773fb3db528b36647d067f18db3.zip
ffmpeg-streaming-631d56ffc823e773fb3db528b36647d067f18db3.tar.gz
lavc/adpcm: THP: fix indentation
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/adpcm.c')
-rw-r--r--libavcodec/adpcm.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c
index 69ece18..94b4de1 100644
--- a/libavcodec/adpcm.c
+++ b/libavcodec/adpcm.c
@@ -1451,15 +1451,15 @@ static int adpcm_decode_frame(AVCodecContext *avctx, void *data,
for (n = 0; n < 16; n++)
table[i][n] = THP_GET16(tb);
} else {
- for (i = 0; i < avctx->channels; i++)
- for (n = 0; n < 16; n++)
- table[i][n] = THP_GET16(gb);
+ for (i = 0; i < avctx->channels; i++)
+ for (n = 0; n < 16; n++)
+ table[i][n] = THP_GET16(gb);
- /* Initialize the previous sample. */
- for (i = 0; i < avctx->channels; i++) {
- c->status[i].sample1 = THP_GET16(gb);
- c->status[i].sample2 = THP_GET16(gb);
- }
+ /* Initialize the previous sample. */
+ for (i = 0; i < avctx->channels; i++) {
+ c->status[i].sample1 = THP_GET16(gb);
+ c->status[i].sample2 = THP_GET16(gb);
+ }
}
for (ch = 0; ch < avctx->channels; ch++) {
OpenPOWER on IntegriCloud