Browse Source

avcodec/opus: Add {} over multiline if() body

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n4.0
Michael Niedermayer 8 years ago
parent
commit
2cd718a4c5
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      libavcodec/opus.c

+ 3
- 2
libavcodec/opus.c View File

@@ -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++)


Loading…
Cancel
Save