]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
cosmetics: reindent after last commit
authorkostya <kostya@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Fri, 17 Apr 2009 14:10:24 +0000 (14:10 +0000)
committerkostya <kostya@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Fri, 17 Apr 2009 14:10:24 +0000 (14:10 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18554 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/wnv1.c

index dc17e966590ac766612721ebf98e81687ce938d6..aec474f2dea0a521922c707189af5076575b78e5 100644 (file)
@@ -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;
 }