summaryrefslogtreecommitdiff
path: root/libavcodec/wmaprodec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-08-26 23:12:41 +0000
committerDiego Biurrun <diego@biurrun.de>2009-08-26 23:12:41 +0000
commitae9253151f076807de33ea166b244c2a97c67ea9 (patch)
tree5b3fbd08e466f69966395743b1f5472b8b6f8d6e /libavcodec/wmaprodec.c
parent21c6a0258c32d3967cb66638dad5c892a645ab0c (diff)
whitespace cosmetics
Originally committed as revision 19725 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/wmaprodec.c')
-rw-r--r--libavcodec/wmaprodec.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/wmaprodec.c b/libavcodec/wmaprodec.c
index d06af5e284..94fea35629 100644
--- a/libavcodec/wmaprodec.c
+++ b/libavcodec/wmaprodec.c
@@ -191,10 +191,10 @@ static int decode_coeffs(WMA3DecodeContext *s, int c)
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) {
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);
if (vals[i] == HUFF_VEC1_SIZE - 1)
vals[i] += ff_wma_get_large_val(&s->gb);
@@ -230,10 +230,10 @@ static int decode_coeffs(WMA3DecodeContext *s, int c)
/** decode run level coded coefficients */
if (rl_mode) {
- if(ff_wma_run_level_decode(s->avctx, &s->gb, vlc,
- level, run, 1, ci->coeffs,
- cur_coeff, s->subframe_len, s->subframe_len,
- s->esc_len, 0))
+ if (ff_wma_run_level_decode(s->avctx, &s->gb, vlc,
+ level, run, 1, ci->coeffs,
+ cur_coeff, s->subframe_len,
+ s->subframe_len, s->esc_len, 0))
return AVERROR_INVALIDDATA;
}