summaryrefslogtreecommitdiffstats
path: root/mp3lib/huffman.h
diff options
context:
space:
mode:
Diffstat (limited to 'mp3lib/huffman.h')
-rw-r--r--mp3lib/huffman.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/mp3lib/huffman.h b/mp3lib/huffman.h
index 7fec0d589e..63cb978c7e 100644
--- a/mp3lib/huffman.h
+++ b/mp3lib/huffman.h
@@ -1,19 +1,19 @@
/*
* huffman tables ... recalcualted to work with my optimzed
* decoder scheme (MH)
- *
- * probably we could save a few bytes of memory, because the
+ *
+ * probably we could save a few bytes of memory, because the
* smaller tables are often the part of a bigger table
*/
-struct newhuff
+struct newhuff
{
unsigned int linbits;
short *table;
};
-static short tab0[] =
-{
+static short tab0[] =
+{
0
};
@@ -286,7 +286,7 @@ static short tab_c1[] =
-static struct newhuff ht[] =
+static struct newhuff ht[] =
{
{ /* 0 */ 0 , tab0 } ,
{ /* 2 */ 0 , tab1 } ,
@@ -323,10 +323,8 @@ static struct newhuff ht[] =
{ /* 16 */ 13, tab24 }
};
-static struct newhuff htc[] =
+static struct newhuff htc[] =
{
{ /* 1 , 1 , */ 0 , tab_c0 } ,
{ /* 1 , 1 , */ 0 , tab_c1 }
};
-
-