Commit 9a26883c authored by cehoyos's avatar cehoyos

Fix indentation after last commit.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19238 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d79cbb8c
...@@ -648,12 +648,12 @@ static int adpcm_encode_frame(AVCodecContext *avctx, ...@@ -648,12 +648,12 @@ static int adpcm_encode_frame(AVCodecContext *avctx,
*dst++ = buf[0][i] | (buf[1][i] << 4); *dst++ = buf[0][i] | (buf[1][i] << 4);
} }
} else } else
for (n *= avctx->channels; n>0; n--) { for (n *= avctx->channels; n>0; n--) {
int nibble; int nibble;
nibble = adpcm_yamaha_compress_sample(&c->status[ 0], *samples++); nibble = adpcm_yamaha_compress_sample(&c->status[ 0], *samples++);
nibble |= adpcm_yamaha_compress_sample(&c->status[st], *samples++) << 4; nibble |= adpcm_yamaha_compress_sample(&c->status[st], *samples++) << 4;
*dst++ = nibble; *dst++ = nibble;
} }
break; break;
default: default:
return -1; return -1;
......
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