summaryrefslogtreecommitdiffstats
path: root/mp3lib/huffman.h
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2009-07-07 02:26:13 +0300
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-07-07 02:34:35 +0300
commit0eb321bf2c1cc0e048faff26a01f86cdd3ec254f (patch)
tree71cb9bd9ed121156d3382066c0722c73189afe04 /mp3lib/huffman.h
parent6d908205fbadbdf7ccdc6c5e0eb918f0b43f16e0 (diff)
downloadmpv-0eb321bf2c1cc0e048faff26a01f86cdd3ec254f.tar.bz2
mpv-0eb321bf2c1cc0e048faff26a01f86cdd3ec254f.tar.xz
Remove trailing whitespace from most files
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 }
};
-
-