diff liba52/bitstream.h @ 2967:ef2149182f1c libavcodec

COSMETICS: Remove all trailing whitespace.
author diego
date Sat, 17 Dec 2005 18:14:38 +0000
parents 68d0a38bd802
children 0b546eab515d
line wrap: on
line diff
--- a/liba52/bitstream.h	Sat Dec 17 11:31:56 2005 +0000
+++ b/liba52/bitstream.h	Sat Dec 17 18:14:38 2005 +0000
@@ -53,7 +53,7 @@
 static inline uint32_t bitstream_get (a52_state_t * state, uint32_t num_bits)
 {
     uint32_t result;
-	
+
     if (num_bits < state->bits_left) {
 	result = (state->current_word << (32 - state->bits_left)) >> (32 - num_bits);
 	state->bits_left -= num_bits;
@@ -66,7 +66,7 @@
 static inline int32_t bitstream_get_2 (a52_state_t * state, uint32_t num_bits)
 {
     int32_t result;
-	
+
     if (num_bits < state->bits_left) {
 	result = (((int32_t)state->current_word) << (32 - state->bits_left)) >> (32 - num_bits);
 	state->bits_left -= num_bits;