diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-10-23 13:02:04 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-10-25 11:30:50 -0400 |
commit | 4e41973794c5fc5c3a045b00051e0c089774cf9b (patch) | |
tree | 9334f356f7ef7c4dcfbf6d25640277e802936cca /libavcodec/g722dec.c | |
parent | d0a196962a82f26a06357efd843488ae62fabea7 (diff) | |
download | ffmpeg-4e41973794c5fc5c3a045b00051e0c089774cf9b.tar.gz |
g722dec: cosmetics: reindent/linewrap
Diffstat (limited to 'libavcodec/g722dec.c')
-rw-r--r-- | libavcodec/g722dec.c | 34 |
1 files changed, 16 insertions, 18 deletions
diff --git a/libavcodec/g722dec.c b/libavcodec/g722dec.c index d2d2a48c34..9330fea3ce 100644 --- a/libavcodec/g722dec.c +++ b/libavcodec/g722dec.c @@ -105,24 +105,22 @@ static int g722_decode_frame(AVCodecContext *avctx, void *data, ff_g722_update_low_predictor(&c->band[0], ilow >> (2 - skip)); - dhigh = c->band[1].scale_factor * - ff_g722_high_inv_quant[ihigh] >> 10; - rhigh = av_clip(dhigh + c->band[1].s_predictor, -16384, 16383); - - ff_g722_update_high_predictor(&c->band[1], dhigh, ihigh); - - c->prev_samples[c->prev_samples_pos++] = rlow + rhigh; - c->prev_samples[c->prev_samples_pos++] = rlow - rhigh; - ff_g722_apply_qmf(c->prev_samples + c->prev_samples_pos - 24, - &xout1, &xout2); - out_buf[out_len++] = av_clip_int16(xout1 >> 12); - out_buf[out_len++] = av_clip_int16(xout2 >> 12); - if (c->prev_samples_pos >= PREV_SAMPLES_BUF_SIZE) { - memmove(c->prev_samples, - c->prev_samples + c->prev_samples_pos - 22, - 22 * sizeof(c->prev_samples[0])); - c->prev_samples_pos = 22; - } + dhigh = c->band[1].scale_factor * ff_g722_high_inv_quant[ihigh] >> 10; + rhigh = av_clip(dhigh + c->band[1].s_predictor, -16384, 16383); + + ff_g722_update_high_predictor(&c->band[1], dhigh, ihigh); + + c->prev_samples[c->prev_samples_pos++] = rlow + rhigh; + c->prev_samples[c->prev_samples_pos++] = rlow - rhigh; + ff_g722_apply_qmf(c->prev_samples + c->prev_samples_pos - 24, + &xout1, &xout2); + out_buf[out_len++] = av_clip_int16(xout1 >> 12); + out_buf[out_len++] = av_clip_int16(xout2 >> 12); + if (c->prev_samples_pos >= PREV_SAMPLES_BUF_SIZE) { + memmove(c->prev_samples, c->prev_samples + c->prev_samples_pos - 22, + 22 * sizeof(c->prev_samples[0])); + c->prev_samples_pos = 22; + } } *data_size = out_len << 1; return avpkt->size; |