diff options
author | Vladimir Voroshilov <voroshil@gmail.com> | 2009-06-13 00:28:13 +0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-24 21:11:00 +0200 |
commit | 4920a1a913b3baeecbbc28759d22011826b54b50 (patch) | |
tree | 686e9b742362ed32503957cad01947fdea72df96 /libavcodec/g729dec.c | |
parent | 0b42463aecff38fda35982141ccd095c9445f78f (diff) | |
download | ffmpeg-4920a1a913b3baeecbbc28759d22011826b54b50.tar.gz |
Indentation fix after gain codes decoding2
Diffstat (limited to 'libavcodec/g729dec.c')
-rw-r--r-- | libavcodec/g729dec.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/g729dec.c b/libavcodec/g729dec.c index c5deab94a5..db7b5527f5 100644 --- a/libavcodec/g729dec.c +++ b/libavcodec/g729dec.c @@ -433,10 +433,10 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, gain_corr_factor >>= 1; #endif } else { - ctx->past_gain_pitch[0] = cb_gain_1st_8k[gc_1st_index][0] + - cb_gain_2nd_8k[gc_2nd_index][0]; - gain_corr_factor = cb_gain_1st_8k[gc_1st_index][1] + - cb_gain_2nd_8k[gc_2nd_index][1]; + ctx->past_gain_pitch[0] = cb_gain_1st_8k[gc_1st_index][0] + + cb_gain_2nd_8k[gc_2nd_index][0]; + gain_corr_factor = cb_gain_1st_8k[gc_1st_index][1] + + cb_gain_2nd_8k[gc_2nd_index][1]; } /* Decode the fixed-codebook gain. */ |