diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-10-16 16:12:04 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-10-16 16:12:04 +0000 |
commit | 52ae1e869be9ec1d13dea45277bf58a37a37f467 (patch) | |
tree | 67f7518e00360afaf925bdd44191f7a9c6bc2d42 | |
parent | 7fd88069241ead2d2fd3e2db1b79e4b292e90001 (diff) | |
download | ffmpeg-52ae1e869be9ec1d13dea45277bf58a37a37f467.tar.gz |
mlp: Indent.
Originally committed as revision 20255 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/mlpdec.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c index 3b0789d054..d211ebd3ac 100644 --- a/libavcodec/mlpdec.c +++ b/libavcodec/mlpdec.c @@ -156,15 +156,15 @@ static VLC huff_vlc[3]; static av_cold void init_static(void) { if (!huff_vlc[0].bits) { - INIT_VLC_STATIC(&huff_vlc[0], VLC_BITS, 18, - &ff_mlp_huffman_tables[0][0][1], 2, 1, - &ff_mlp_huffman_tables[0][0][0], 2, 1, 512); - INIT_VLC_STATIC(&huff_vlc[1], VLC_BITS, 16, - &ff_mlp_huffman_tables[1][0][1], 2, 1, - &ff_mlp_huffman_tables[1][0][0], 2, 1, 512); - INIT_VLC_STATIC(&huff_vlc[2], VLC_BITS, 15, - &ff_mlp_huffman_tables[2][0][1], 2, 1, - &ff_mlp_huffman_tables[2][0][0], 2, 1, 512); + INIT_VLC_STATIC(&huff_vlc[0], VLC_BITS, 18, + &ff_mlp_huffman_tables[0][0][1], 2, 1, + &ff_mlp_huffman_tables[0][0][0], 2, 1, 512); + INIT_VLC_STATIC(&huff_vlc[1], VLC_BITS, 16, + &ff_mlp_huffman_tables[1][0][1], 2, 1, + &ff_mlp_huffman_tables[1][0][0], 2, 1, 512); + INIT_VLC_STATIC(&huff_vlc[2], VLC_BITS, 15, + &ff_mlp_huffman_tables[2][0][1], 2, 1, + &ff_mlp_huffman_tables[2][0][0], 2, 1, 512); } ff_mlp_init_crc(); |