search for: format_type_ogg

Displaying 2 results from an estimated 2 matches for "format_type_ogg".

2005 Apr 11
6
AAC support?
...rce code for icecast-2.2.0, I can't find reference to AAC anywhere. in particular, in format.c the format_get_type function only distinguishes between mp3 and ogg: format_type_t format_get_type(char *contenttype) { if(strcmp(contenttype, "application/x-ogg") == 0) return FORMAT_TYPE_OGG; /* Backwards compatibility */ else if(strcmp(contenttype, "application/ogg") == 0) return FORMAT_TYPE_OGG; /* Now blessed by IANA */ else /* We default to the Generic format handler, which can handle many more formats than just mp3 */ return FOR...
2005 Apr 11
0
AAC support?
...#39;t find >reference to AAC anywhere. in particular, in format.c the >format_get_type function only distinguishes between mp3 and ogg: > > >format_type_t format_get_type(char *contenttype) >{ > if(strcmp(contenttype, "application/x-ogg") == 0) > return FORMAT_TYPE_OGG; /* Backwards compatibility */ > else if(strcmp(contenttype, "application/ogg") == 0) > return FORMAT_TYPE_OGG; /* Now blessed by IANA */ > else > /* We default to the Generic format handler, which > can handle many more formats than just...