summaryrefslogtreecommitdiff
path: root/libavcodec/bitstream.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-09-24 22:37:34 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-09-24 22:37:34 +0000
commit1e224c5480790259038f3022c3697a581c27f6c9 (patch)
tree726848e3364db7454647f95681a117ffc3af2be0 /libavcodec/bitstream.c
parente518a49f34a9dcf051953cff67790152f86ba886 (diff)
Reindent.
Originally committed as revision 20022 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/bitstream.c')
-rw-r--r--libavcodec/bitstream.c4
1 files changed, 2 insertions, 2 deletions
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;
}