diff wav.c @ 885:da1d5db0ce5c libavformat

COSMETICS: Remove all trailing whitespace.
author diego
date Sat, 17 Dec 2005 18:14:38 +0000
parents 29fa250510df
children d70e50f1495f
line wrap: on
line diff
--- a/wav.c	Sat Dec 17 17:57:03 2005 +0000
+++ b/wav.c	Sat Dec 17 18:14:38 2005 +0000
@@ -1,4 +1,4 @@
-/* 
+/*
  * WAV encoder and decoder
  * Copyright (c) 2001, 2002 Fabrice Bellard.
  *
@@ -78,7 +78,7 @@
     } else {
         bps = 16;
     }
-    
+
     if (enc->codec_id == CODEC_ID_MP2 || enc->codec_id == CODEC_ID_MP3) {
         blkalign = enc->frame_size; //this is wrong, but seems many demuxers dont work if this is set correctly
         //blkalign = 144 * enc->bit_rate/enc->sample_rate;
@@ -145,7 +145,7 @@
  * WAVEFORMATEX adds 'WORD  cbSize' and basically makes itself
  * an openended structure.
  */
-void get_wav_header(ByteIOContext *pb, AVCodecContext *codec, int size) 
+void get_wav_header(ByteIOContext *pb, AVCodecContext *codec, int size)
 {
     int id;
 
@@ -161,7 +161,7 @@
     }else
         codec->bits_per_sample = get_le16(pb);
     codec->codec_id = wav_codec_get_id(id, codec->bits_per_sample);
-    
+
     if (size > 16) {  /* We're obviously dealing with WAVEFORMATEX */
 	codec->extradata_size = get_le16(pb);
 	if (codec->extradata_size > 0) {
@@ -171,7 +171,7 @@
             get_buffer(pb, codec->extradata, codec->extradata_size);
         } else
 	    codec->extradata_size = 0;
-	
+
 	/* It is possible for the chunk to contain garbage at the end */
 	if (size - codec->extradata_size - 18 > 0)
 	    url_fskip(pb, size - codec->extradata_size - 18);
@@ -222,7 +222,7 @@
 
     /* data header */
     wav->data = start_tag(pb, "data");
-    
+
     put_flush_packet(pb);
 
     return 0;
@@ -309,7 +309,7 @@
     tag = get_le32(pb);
     if (tag != MKTAG('W', 'A', 'V', 'E'))
         return -1;
-    
+
     /* parse fmt header */
     size = find_tag(pb, MKTAG('f', 'm', 't', ' '));
     if (size < 0)
@@ -365,7 +365,7 @@
     return 0;
 }
 
-static int wav_read_seek(AVFormatContext *s, 
+static int wav_read_seek(AVFormatContext *s,
                          int stream_index, int64_t timestamp, int flags)
 {
     AVStream *st;