summaryrefslogtreecommitdiff
path: root/libavcodec/adpcm.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-11-30 10:48:37 +0000
committerPaul B Mahol <onemda@gmail.com>2012-11-30 10:48:37 +0000
commitd4c59f77b683bd3843df34c07b1c9a0241ba882c (patch)
treec832548aebcd16010a00b05e28e657513fda2518 /libavcodec/adpcm.c
parent1560c3295db00119e1bef51c2eca1957edd972f4 (diff)
adpcm/thp: cosmetics: reindent
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/adpcm.c')
-rw-r--r--libavcodec/adpcm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c
index c182e6faa8..fd308a9ab9 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++) {