Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-09-25 02:37:34 +0400
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-09-25 02:37:34 +0400
commit1e224c5480790259038f3022c3697a581c27f6c9 (patch)
tree726848e3364db7454647f95681a117ffc3af2be0 /libavcodec
parente518a49f34a9dcf051953cff67790152f86ba886 (diff)
Reindent.
Originally committed as revision 20022 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-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;
}