Commit d4c59f77 authored by Paul B Mahol's avatar Paul B Mahol

adpcm/thp: cosmetics: reindent

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 1560c329
...@@ -1331,8 +1331,8 @@ static int adpcm_decode_frame(AVCodecContext *avctx, void *data, ...@@ -1331,8 +1331,8 @@ static int adpcm_decode_frame(AVCodecContext *avctx, void *data,
/* Initialize the previous sample. */ /* Initialize the previous sample. */
for (i = 0; i < avctx->channels; i++) { for (i = 0; i < avctx->channels; i++) {
c->status[i].sample1 = 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); c->status[i].sample2 = sign_extend(bytestream2_get_be16u(&gb), 16);
} }
for (ch = 0; ch < avctx->channels; ch++) { for (ch = 0; ch < avctx->channels; ch++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment