summaryrefslogtreecommitdiff
path: root/libavcodec/wnv1.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2009-04-17 14:10:24 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2009-04-17 14:10:24 +0000
commitc994dae1e23c2fd307dffc2bee24bfb1e7593e34 (patch)
tree9563ce6da7a939f656e2f95e54912876581d3fd4 /libavcodec/wnv1.c
parentbd4110f99b6c4ce3a7fc134206404489dc8e41a6 (diff)
cosmetics: reindent after last commit
Originally committed as revision 18554 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/wnv1.c')
-rw-r--r--libavcodec/wnv1.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/wnv1.c b/libavcodec/wnv1.c
index dc17e96659..aec474f2de 100644
--- a/libavcodec/wnv1.c
+++ b/libavcodec/wnv1.c
@@ -136,9 +136,9 @@ static av_cold int decode_init(AVCodecContext *avctx){
code_vlc.table = code_table;
code_vlc.table_allocated = 1 << CODE_VLC_BITS;
- init_vlc(&code_vlc, CODE_VLC_BITS, 16,
- &code_tab[0][1], 4, 2,
- &code_tab[0][0], 4, 2, INIT_VLC_USE_NEW_STATIC);
+ init_vlc(&code_vlc, CODE_VLC_BITS, 16,
+ &code_tab[0][1], 4, 2,
+ &code_tab[0][0], 4, 2, INIT_VLC_USE_NEW_STATIC);
return 0;
}