1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-13 12:07:49 +02:00

Reindent.

Originally committed as revision 20022 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger 2009-09-24 22:37:34 +00:00
parent e518a49f34
commit 1e224c5480

View File

@ -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;
}