mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
Now that it's been completely officially assigned, use application/ogg instead
of application/x-ogg svn path=/trunk/icecast/; revision=4336
This commit is contained in:
parent
a3ee7cf61a
commit
9f85a1e7c3
@ -29,7 +29,9 @@
|
||||
format_type_t format_get_type(char *contenttype)
|
||||
{
|
||||
if(strcmp(contenttype, "application/x-ogg") == 0)
|
||||
return FORMAT_TYPE_VORBIS;
|
||||
return FORMAT_TYPE_VORBIS; /* Backwards compatibility */
|
||||
else if(strcmp(contenttype, "application/ogg") == 0)
|
||||
return FORMAT_TYPE_VORBIS; /* Now blessed by IANA */
|
||||
else if(strcmp(contenttype, "audio/mpeg") == 0)
|
||||
return FORMAT_TYPE_MP3;
|
||||
else
|
||||
@ -40,7 +42,7 @@ char *format_get_mimetype(format_type_t type)
|
||||
{
|
||||
switch(type) {
|
||||
case FORMAT_TYPE_VORBIS:
|
||||
return "application/x-ogg";
|
||||
return "application/ogg";
|
||||
break;
|
||||
case FORMAT_TYPE_MP3:
|
||||
return "audio/mpeg";
|
||||
|
@ -315,7 +315,7 @@ static char *fserve_content_type(char *path)
|
||||
else {
|
||||
/* Fallbacks for a few basic ones */
|
||||
if(!strcmp(ext, "ogg"))
|
||||
return "application/x-ogg";
|
||||
return "application/ogg";
|
||||
else if(!strcmp(ext, "mp3"))
|
||||
return "audio/mpeg";
|
||||
else if(!strcmp(ext, "html"))
|
||||
|
Loading…
Reference in New Issue
Block a user