diff oggparseflac.c @ 885:da1d5db0ce5c libavformat

COSMETICS: Remove all trailing whitespace.
author diego
date Sat, 17 Dec 2005 18:14:38 +0000
parents feca73904e67
children edbe5c3717f9
line wrap: on
line diff
--- a/oggparseflac.c	Sat Dec 17 17:57:03 2005 +0000
+++ b/oggparseflac.c	Sat Dec 17 18:14:38 2005 +0000
@@ -1,6 +1,6 @@
 /*
  *    Copyright (C) 2005  Matthieu CASTET
- * 
+ *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
@@ -45,7 +45,7 @@
             return -1;
         skip_bits(&gb, 8 + 16);      /* minor version + header count */
         skip_bits(&gb, 4*8); /* "fLaC" */
-    
+
         /* METADATA_BLOCK_HEADER */
         if (get_bits(&gb, 32) != FLAC_STREAMINFO_SIZE)
             return -1;
@@ -54,7 +54,7 @@
 
         st->codec->sample_rate = get_bits_long(&gb, 20);
         st->codec->channels = get_bits(&gb, 3) + 1;
-    
+
         st->codec->codec_type = CODEC_TYPE_AUDIO;
         st->codec->codec_id = CODEC_ID_FLAC;