* Add WAV mime-to-extension mapping.

This commit is contained in:
Justin Maggard 2009-05-12 01:25:46 +00:00
parent 35f9e5b264
commit bb8e2a346a

View File

@ -224,6 +224,8 @@ mime_to_ext(const char * mime, char * buf)
strcpy(buf, "wma");
else if( strcmp(mime+6, "x-flac") == 0 )
strcpy(buf, "flac");
else if( strncmp(mime+6, "L16", 3) == 0 )
strcpy(buf, "wav");
else
strcpy(buf, "dat");
break;