Commit ae925315 authored by Diego Biurrun's avatar Diego Biurrun

whitespace cosmetics

Originally committed as revision 19725 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 21c6a025
...@@ -191,10 +191,10 @@ static int decode_coeffs(WMA3DecodeContext *s, int c) ...@@ -191,10 +191,10 @@ static int decode_coeffs(WMA3DecodeContext *s, int c)
idx = get_vlc2(&s->gb, vec4_vlc.table, VLCBITS, VEC4MAXDEPTH); idx = get_vlc2(&s->gb, vec4_vlc.table, VLCBITS, VEC4MAXDEPTH);
if ( idx == HUFF_VEC4_SIZE - 1 ) { if (idx == HUFF_VEC4_SIZE - 1) {
for (i = 0; i < 4; i += 2) { for (i = 0; i < 4; i += 2) {
idx = get_vlc2(&s->gb, vec2_vlc.table, VLCBITS, VEC2MAXDEPTH); idx = get_vlc2(&s->gb, vec2_vlc.table, VLCBITS, VEC2MAXDEPTH);
if ( idx == HUFF_VEC2_SIZE - 1 ) { if (idx == HUFF_VEC2_SIZE - 1) {
vals[i] = get_vlc2(&s->gb, vec1_vlc.table, VLCBITS, VEC1MAXDEPTH); vals[i] = get_vlc2(&s->gb, vec1_vlc.table, VLCBITS, VEC1MAXDEPTH);
if (vals[i] == HUFF_VEC1_SIZE - 1) if (vals[i] == HUFF_VEC1_SIZE - 1)
vals[i] += ff_wma_get_large_val(&s->gb); vals[i] += ff_wma_get_large_val(&s->gb);
...@@ -230,10 +230,10 @@ static int decode_coeffs(WMA3DecodeContext *s, int c) ...@@ -230,10 +230,10 @@ static int decode_coeffs(WMA3DecodeContext *s, int c)
/** decode run level coded coefficients */ /** decode run level coded coefficients */
if (rl_mode) { if (rl_mode) {
if(ff_wma_run_level_decode(s->avctx, &s->gb, vlc, if (ff_wma_run_level_decode(s->avctx, &s->gb, vlc,
level, run, 1, ci->coeffs, level, run, 1, ci->coeffs,
cur_coeff, s->subframe_len, s->subframe_len, cur_coeff, s->subframe_len,
s->esc_len, 0)) s->subframe_len, s->esc_len, 0))
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment