Index: audio.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/audio/audio.module,v
retrieving revision 1.135
diff -u -p -r1.135 audio.module
--- audio.module	14 May 2008 03:54:56 -0000	1.135
+++ audio.module	25 May 2008 22:48:29 -0000
@@ -1560,7 +1560,7 @@ function audio_play($nid = FALSE) {
  *   An array of http headers to send along with file.
  */
 function audio_file_transfer($source, $headers) {
-  ob_end_clean();
+  @ob_end_clean();
 
   foreach ($headers as $header) {
     // To prevent HTTP header injection, we delete new lines that are
@@ -1579,8 +1579,6 @@ function audio_file_transfer($source, $h
     }
     while (!feof($fd)) {
       print fread($fd, 1024);
-      ob_flush();
-      flush();
     }
     fclose($fd);
   }
