Index: audio.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/audio/audio.module,v
retrieving revision 1.32.2.3
diff -u -r1.32.2.3 audio.module
--- audio.module	27 Jan 2006 17:59:24 -0000	1.32.2.3
+++ audio.module	29 Jan 2006 01:17:09 -0000
@@ -754,8 +754,12 @@
   $params->url = url('audio/play/'.$node->nid, NULL, NULL, TRUE);
   $params->title = $node->audio['title'];
 
-  // flash only supports playing MP3 with 44kHz sample rate
-  $flashable = ($node->audio['sample_rate'] == '44100');
+  // flash only supports playing MP3s with 44kHz, 22kHz, and 11kHz sample rates
+  $flashable = false;
+  switch ($node->audio['sample_rate']) {
+    case '44100': case '22050': case '11025':
+      $flashable = true;
+  }
 
   //if there is no theme function that provides a player of this file type, use the default.
   //The default just shows a bare link to the file...

