summaryrefslogtreecommitdiffstats
path: root/mp3lib/huffman.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-05-13 02:58:57 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-05-13 02:58:57 +0000
commit6e9cbdc10448203e7c8b2de41447442fcc9f7bae (patch)
tree0ed465592509105fdbeab27fc12ddbb2e3590aa5 /mp3lib/huffman.h
parenteafe5b7517bbf408ae1ffc936a3abe2313c3b334 (diff)
downloadmpv-6e9cbdc10448203e7c8b2de41447442fcc9f7bae.tar.bz2
mpv-6e9cbdc10448203e7c8b2de41447442fcc9f7bae.tar.xz
whitespace cosmetics: Remove all trailing whitespace.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29305 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib/huffman.h')
-rw-r--r--mp3lib/huffman.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/mp3lib/huffman.h b/mp3lib/huffman.h
index 7fec0d589e..aa9e7b91fa 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,7 +323,7 @@ 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 }