mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 17:55:21 +00:00
Fix indentation after last commit.
Originally committed as revision 19238 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
d8b2d83473
commit
1efe9fd5c0
@ -648,12 +648,12 @@ static int adpcm_encode_frame(AVCodecContext *avctx,
|
||||
*dst++ = buf[0][i] | (buf[1][i] << 4);
|
||||
}
|
||||
} else
|
||||
for (n *= avctx->channels; n>0; n--) {
|
||||
int nibble;
|
||||
nibble = adpcm_yamaha_compress_sample(&c->status[ 0], *samples++);
|
||||
nibble |= adpcm_yamaha_compress_sample(&c->status[st], *samples++) << 4;
|
||||
*dst++ = nibble;
|
||||
}
|
||||
for (n *= avctx->channels; n>0; n--) {
|
||||
int nibble;
|
||||
nibble = adpcm_yamaha_compress_sample(&c->status[ 0], *samples++);
|
||||
nibble |= adpcm_yamaha_compress_sample(&c->status[st], *samples++) << 4;
|
||||
*dst++ = nibble;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user