From 1e224c5480790259038f3022c3697a581c27f6c9 Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Thu, 24 Sep 2009 22:37:34 +0000 Subject: Reindent. Originally committed as revision 20022 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/bitstream.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/bitstream.c') diff --git a/libavcodec/bitstream.c b/libavcodec/bitstream.c index cb0c0f6dc6..0af24b959c 100644 --- a/libavcodec/bitstream.c +++ b/libavcodec/bitstream.c @@ -127,8 +127,8 @@ static int alloc_table(VLC *vlc, int size, int use_static) if(use_static) abort(); //cant do anything, init_vlc() is used with too little memory vlc->table_allocated += (1 << vlc->bits); - vlc->table = av_realloc(vlc->table, - sizeof(VLC_TYPE) * 2 * vlc->table_allocated); + vlc->table = av_realloc(vlc->table, + sizeof(VLC_TYPE) * 2 * vlc->table_allocated); if (!vlc->table) return -1; } -- cgit v1.2.3