[FFmpeg-cvslog] Indentation fix after gain codes decoding2
Vladimir Voroshilov
git at videolan.org
Sat Sep 24 21:17:03 CEST 2011
ffmpeg | branch: master | Vladimir Voroshilov <voroshil at gmail.com> | Sat Jun 13 00:28:13 2009 +0700| [4920a1a913b3baeecbbc28759d22011826b54b50] | committer: Michael Niedermayer
Indentation fix after gain codes decoding2
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4920a1a913b3baeecbbc28759d22011826b54b50
---
libavcodec/g729dec.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/libavcodec/g729dec.c b/libavcodec/g729dec.c
index c5deab9..db7b552 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. */
More information about the ffmpeg-cvslog
mailing list