[FFmpeg-soc] [soc]: r3963 - wmapro/wma3dec.c

faust3 subversion at mplayerhq.hu
Sat Jan 17 12:03:28 CET 2009


Author: faust3
Date: Sat Jan 17 12:03:28 2009
New Revision: 3963

Log:
unifiy number of empty lines between functions

Modified:
   wmapro/wma3dec.c

Modified: wmapro/wma3dec.c
==============================================================================
--- wmapro/wma3dec.c	Sat Jan 17 11:57:54 2009	(r3962)
+++ wmapro/wma3dec.c	Sat Jan 17 12:03:28 2009	(r3963)
@@ -48,7 +48,6 @@ static void dump_context(WMA3DecodeConte
     PRINT("lossless",s->lossless);
 }
 
-
 /**
  *@brief Get the samples per frame for this stream.
  *@param sample_rate output sample_rate
@@ -88,7 +87,6 @@ static int get_samples_per_frame(int sam
     return samples_per_frame;
 }
 
-
 /**
  *@brief Uninitialize the decoder and free all ressources.
  *@param avctx codec context
@@ -125,7 +123,6 @@ static av_cold int wma3_decode_end(AVCod
     return 0;
 }
 
-
 /**
  *@brief Initialize the decoder.
  *@param avctx codec context
@@ -379,8 +376,6 @@ static av_cold int wma3_decode_init(AVCo
     return 0;
 }
 
-
-
 /**
  *@brief Decode how the data in the frame is split into subframes
  *       every WMA frame contains the encoded data for a fixed number of
@@ -568,7 +563,6 @@ static int wma_decode_tilehdr(WMA3Decode
     return 0;
 }
 
-
 static int wma_decode_channel_transform(WMA3DecodeContext* s, GetBitContext* gb)
 {
     int i;
@@ -711,7 +705,6 @@ static int wma_decode_channel_transform(
     return 1;
 }
 
-
 static unsigned int wma_get_large_val(WMA3DecodeContext* s)
 {
     int n_bits = 8;
@@ -727,7 +720,6 @@ static unsigned int wma_get_large_val(WM
     return get_bits_long(s->getbit,n_bits);
 }
 
-
 static inline void wma_get_vec4(WMA3DecodeContext *s,int* vals,int* masks)
 {
         unsigned int idx;
@@ -772,7 +764,6 @@ static inline void wma_get_vec4(WMA3Deco
             masks[3] = get_bits(s->getbit,1);
 }
 
-
 static int decode_coeffs(WMA3DecodeContext *s,GetBitContext* gb,int c)
 {
     int vlctable;
@@ -860,8 +851,6 @@ static int decode_coeffs(WMA3DecodeConte
     return 0;
 }
 
-
-
 static int wma_decode_scale_factors(WMA3DecodeContext* s,GetBitContext* gb)
 {
     int i;
@@ -985,7 +974,6 @@ static void wma_calc_decorrelation_matri
 
 }
 
-
 static void wma_inverse_channel_transform(WMA3DecodeContext *s)
 {
     int i;
@@ -1065,7 +1053,6 @@ static void wma_inverse_channel_transfor
     }
 }
 
-
 static void wma_window(WMA3DecodeContext *s)
 {
     int i;
@@ -1113,8 +1100,6 @@ static void wma_window(WMA3DecodeContext
     }
 }
 
-
-
 static int wma_decode_subframe(WMA3DecodeContext *s,GetBitContext* gb)
 {
     int offset = s->samples_per_frame;
@@ -1473,7 +1458,6 @@ static int wma_decode_frame(WMA3DecodeCo
     return more_frames;
 }
 
-
 /**
  *@brief Calculate remaining input buffer length.
  *@param s codec context
@@ -1620,7 +1604,6 @@ static int wma3_decode_packet(AVCodecCon
     return avctx->block_align;
 }
 
-
 /**
  *@brief WMA9 decoder
  */



More information about the FFmpeg-soc mailing list