mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
lavc/adpcm: THP: fix indentation
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e70fd57de5
commit
631d56ffc8
1 changed files with 8 additions and 8 deletions
|
|
@ -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++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue