1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-23 06:25:24 +00:00

Comment audio/mpeg out until it gets implemented, to avoid segfaults.

svn path=/trunk/icecast/; revision=3076
This commit is contained in:
Michael Smith 2002-02-19 22:01:51 +00:00
parent 1a3824ff89
commit cb9de1ee2a

View File

@ -19,8 +19,8 @@ format_type_t format_get_type(char *contenttype)
{
if(strcmp(contenttype, "application/x-ogg") == 0)
return FORMAT_TYPE_VORBIS;
else if(strcmp(contenttype, "audio/mpeg") == 0)
return FORMAT_TYPE_MP3;
/* else if(strcmp(contenttype, "audio/mpeg") == 0)
return FORMAT_TYPE_MP3; */
else
return -1;
}