diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-04-24 05:52:53 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-04-24 05:52:53 +0000 |
commit | 120ac2620df75f314136fa9598b12e63967366d9 (patch) | |
tree | 4a18310525d4a22a357fc3b8efc707f13549f204 | |
parent | 29ee635503b2cd4417f7639212413b3c7a1dbd7a (diff) | |
download | ffmpeg-120ac2620df75f314136fa9598b12e63967366d9.tar.gz |
cosmetics: remove extra space indentation
Originally committed as revision 18676 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/rv40.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/rv40.c b/libavcodec/rv40.c index 98f8514abf..2eeae302e6 100644 --- a/libavcodec/rv40.c +++ b/libavcodec/rv40.c @@ -76,17 +76,17 @@ static av_cold void rv40_init_tables(void) aic_mode2_vlc_codes[i], 2, 2, INIT_VLC_USE_NEW_STATIC); } for(i = 0; i < NUM_PTYPE_VLCS; i++){ - ptype_vlc[i].table = &ptype_table[i << PTYPE_VLC_BITS]; - ptype_vlc[i].table_allocated = 1 << PTYPE_VLC_BITS; - init_vlc_sparse(&ptype_vlc[i], PTYPE_VLC_BITS, PTYPE_VLC_SIZE, + ptype_vlc[i].table = &ptype_table[i << PTYPE_VLC_BITS]; + ptype_vlc[i].table_allocated = 1 << PTYPE_VLC_BITS; + init_vlc_sparse(&ptype_vlc[i], PTYPE_VLC_BITS, PTYPE_VLC_SIZE, ptype_vlc_bits[i], 1, 1, ptype_vlc_codes[i], 1, 1, ptype_vlc_syms, 1, 1, INIT_VLC_USE_NEW_STATIC); } for(i = 0; i < NUM_BTYPE_VLCS; i++){ - btype_vlc[i].table = &btype_table[i << BTYPE_VLC_BITS]; - btype_vlc[i].table_allocated = 1 << BTYPE_VLC_BITS; - init_vlc_sparse(&btype_vlc[i], BTYPE_VLC_BITS, BTYPE_VLC_SIZE, + btype_vlc[i].table = &btype_table[i << BTYPE_VLC_BITS]; + btype_vlc[i].table_allocated = 1 << BTYPE_VLC_BITS; + init_vlc_sparse(&btype_vlc[i], BTYPE_VLC_BITS, BTYPE_VLC_SIZE, btype_vlc_bits[i], 1, 1, btype_vlc_codes[i], 1, 1, btype_vlc_syms, 1, 1, INIT_VLC_USE_NEW_STATIC); |