X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=wma_common.c;h=b123b5d2104a24500b8123f94bc7e2c6b8622fbc;hp=6d57c00be2d2627624f5642a74948723bc2726fb;hb=bab99bab677988723afe14a7d680e6d5cc7ddda4;hpb=121015ff5cdbe6af7b84f6245ebe62fe2a52a859 diff --git a/wma_common.c b/wma_common.c index 6d57c00b..b123b5d2 100644 --- a/wma_common.c +++ b/wma_common.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2009 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2009 Andre Noll , see file COPYING. */ /** \file wma_common.c Functions used by both the WMA afh and decoder. */ @@ -178,7 +174,5 @@ __a_const int wma_log2(unsigned int v) v >>= 8; n += 8; } - n += log2_tab[v]; - - return n; + return n + log2_tab[v]; }