1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

Cosmetics: indent after last commit and remove useless braces

Originally committed as revision 15214 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2008-09-05 00:01:23 +00:00
parent 1b0dc0120d
commit e10049bef5

View File

@ -324,7 +324,7 @@ static int mace3_decode_frame(AVCodecContext *avctx,
ctx->outPtr = samples + i;
for (j=0; j < buf_size / 2 / avctx->channels; j++) {
for (j=0; j < buf_size / 2 / avctx->channels; j++)
for (k=0; k < 2; k++) {
uint8_t pkt = buf[i*2 + j*2*avctx->channels + k];
chomp3(ctx, pkt &7, MACEtab1, MACEtab2, avctx->channels);
@ -332,7 +332,6 @@ static int mace3_decode_frame(AVCodecContext *avctx,
chomp3(ctx, pkt >> 5 , MACEtab1, MACEtab2, avctx->channels);
}
}
}
*data_size = 2 * 3 * buf_size;