diff faad.c @ 2967:ef2149182f1c libavcodec

COSMETICS: Remove all trailing whitespace.
author diego
date Sat, 17 Dec 2005 18:14:38 +0000
parents 511e3afc43e1
children bfabfdf9ce55
line wrap: on
line diff
--- a/faad.c	Sat Dec 17 11:31:56 2005 +0000
+++ b/faad.c	Sat Dec 17 18:14:38 2005 +0000
@@ -88,10 +88,10 @@
 								 unsigned long buffer_size);
 	char* FAADAPI (*faacDecGetErrorMessage)(unsigned char errcode);
 #endif
-    
+
     void FAADAPI (*faacDecClose)(faacDecHandle hDecoder);
-    
-    
+
+
 } FAACContext;
 
 static const unsigned long faac_srates[] =
@@ -143,10 +143,10 @@
     if(buf_size == 0)
 	return 0;
 #ifndef FAAD2_VERSION
-    out = s->faacDecDecode(s->faac_handle, 
-                           (unsigned char*)buf, 
-                           &bytesconsumed, 
-                           data, 
+    out = s->faacDecDecode(s->faac_handle,
+                           (unsigned char*)buf,
+                           &bytesconsumed,
+                           data,
                            &samples);
     samples *= s->sample_size;
     if (data_size)
@@ -154,7 +154,7 @@
     return (buf_size < (int)bytesconsumed)
 	? buf_size : (int)bytesconsumed;
 #else
-	
+
     out = s->faacDecDecode(s->faac_handle, &frame_info, (unsigned char*)buf, (unsigned long)buf_size);
 
     if (frame_info.error > 0) {