From cb9de1ee2a31a634114a269cf7d4f6a6e4f91102 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Tue, 19 Feb 2002 22:01:51 +0000 Subject: [PATCH] Comment audio/mpeg out until it gets implemented, to avoid segfaults. svn path=/trunk/icecast/; revision=3076 --- src/format.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/format.c b/src/format.c index 4088bb98..1fa9afdb 100644 --- a/src/format.c +++ b/src/format.c @@ -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; }