summaryrefslogtreecommitdiff
path: root/libavcodec/adpcm.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-11-07 18:07:39 +0000
committerPaul B Mahol <onemda@gmail.com>2012-11-12 11:46:22 +0000
commit0cbb31a26485d567f92fdf35838b1fd248003cd6 (patch)
treedd0801c39f846f125ea6b792177c27d772452cb2 /libavcodec/adpcm.c
parente8a9b1a1a0ed1c09d31c6b3ef0649f643d74b161 (diff)
adpcm: reindent after previous commit
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/adpcm.c')
-rw-r--r--libavcodec/adpcm.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c
index 0504ab377c..98b65dd14d 100644
--- a/libavcodec/adpcm.c
+++ b/libavcodec/adpcm.c
@@ -1154,14 +1154,14 @@ static int adpcm_decode_frame(AVCodecContext *avctx, void *data,
break;
case AV_CODEC_ID_ADPCM_IMA_SMJPEG:
for (i = 0; i < avctx->channels; i++) {
- c->status[i].predictor = sign_extend(bytestream2_get_be16u(&gb), 16);
- c->status[i].step_index = bytestream2_get_byteu(&gb);
- bytestream2_skipu(&gb, 1);
- if (c->status[i].step_index > 88u) {
- av_log(avctx, AV_LOG_ERROR, "ERROR: step_index = %i\n",
- c->status[i].step_index);
- return AVERROR_INVALIDDATA;
- }
+ c->status[i].predictor = sign_extend(bytestream2_get_be16u(&gb), 16);
+ c->status[i].step_index = bytestream2_get_byteu(&gb);
+ bytestream2_skipu(&gb, 1);
+ if (c->status[i].step_index > 88u) {
+ av_log(avctx, AV_LOG_ERROR, "ERROR: step_index = %i\n",
+ c->status[i].step_index);
+ return AVERROR_INVALIDDATA;
+ }
}
for (n = nb_samples >> (1 - st); n > 0; n--) {