diff mp3lib/huffman.h @ 29263:0f1b5b68af32

whitespace cosmetics: Remove all trailing whitespace.
author diego
date Wed, 13 May 2009 02:58:57 +0000
parents 3b5f5d1c5041
children 257ef2adfd66
line wrap: on
line diff
--- a/mp3lib/huffman.h	Tue May 12 19:25:35 2009 +0000
+++ b/mp3lib/huffman.h	Wed May 13 02:58:57 2009 +0000
@@ -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 struct newhuff ht[] = 
+static struct newhuff ht[] =
 {
  { /* 0 */ 0 , tab0  } ,
  { /* 2 */ 0 , tab1  } ,
@@ -323,7 +323,7 @@
  { /* 16 */ 13, tab24 }
 };
 
-static struct newhuff htc[] = 
+static struct newhuff htc[] =
 {
  { /* 1 , 1 , */ 0 , tab_c0 } ,
  { /* 1 , 1 , */ 0 , tab_c1 }