diff mmf.c @ 885:da1d5db0ce5c libavformat

COSMETICS: Remove all trailing whitespace.
author diego
date Sat, 17 Dec 2005 18:14:38 +0000
parents 66cc656ea404
children edbe5c3717f9
line wrap: on
line diff
--- a/mmf.c	Sat Dec 17 17:57:03 2005 +0000
+++ b/mmf.c	Sat Dec 17 18:14:38 2005 +0000
@@ -1,4 +1,4 @@
-/* 
+/*
  * Yamaha SMAF format
  * Copyright (c) 2005 Vidar Madsen
  *
@@ -66,7 +66,7 @@
         av_log(s, AV_LOG_ERROR, "Unsupported sample rate %d\n", s->streams[0]->codec->sample_rate);
         return -1;
     }
-    
+
     put_tag(pb, "MMMD");
     put_be32(pb, 0);
     pos = start_tag(pb, "CNTI");
@@ -270,7 +270,7 @@
 
     if(!size)
         return AVERROR_IO;
-    
+
     if (av_new_packet(pkt, size))
         return AVERROR_IO;
     pkt->stream_index = 0;
@@ -290,7 +290,7 @@
     return 0;
 }
 
-static int mmf_read_seek(AVFormatContext *s, 
+static int mmf_read_seek(AVFormatContext *s,
                          int stream_index, int64_t timestamp, int flags)
 {
     return pcm_read_seek(s, stream_index, timestamp, flags);