[FFmpeg-cvslog] avcodec/opus: Add {} over multiline if() body
Michael Niedermayer
git at videolan.org
Sat Jan 13 00:35:46 EET 2018
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Sun Dec 31 22:47:38 2017 +0100| [2cd718a4c52f3225d36d35055f16ef923c03aeac] | committer: Michael Niedermayer
avcodec/opus: Add {} over multiline if() body
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2cd718a4c52f3225d36d35055f16ef923c03aeac
---
libavcodec/opus.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/libavcodec/opus.c b/libavcodec/opus.c
index 9cbf4aed92..aa827b604c 100644
--- a/libavcodec/opus.c
+++ b/libavcodec/opus.c
@@ -566,13 +566,14 @@ void ff_celt_bitalloc(CeltFrame *f, OpusRangeCoder *rc, int encode)
int bits2[CELT_MAX_BANDS];
/* Spread */
- if (opus_rc_tell(rc) + 4 <= f->framebits)
+ if (opus_rc_tell(rc) + 4 <= f->framebits) {
if (encode)
ff_opus_rc_enc_cdf(rc, f->spread, ff_celt_model_spread);
else
f->spread = ff_opus_rc_dec_cdf(rc, ff_celt_model_spread);
- else
+ } else {
f->spread = CELT_SPREAD_NORMAL;
+ }
/* Initialize static allocation caps */
for (i = 0; i < CELT_MAX_BANDS; i++)
More information about the ffmpeg-cvslog
mailing list