summaryrefslogtreecommitdiff
path: root/streamer.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2013-07-03 20:36:06 +0200
committerGravatar waker <wakeroid@gmail.com>2013-07-03 20:36:06 +0200
commitfc455eb3842de79f638a3982eb30e1728ac1f736 (patch)
tree12e356dde7456dab4c9ff61877fcaf04149de592 /streamer.c
parentd54bcc8c6905c723008e17574dd3952745e210a1 (diff)
added audio/x-mpeg content type; fixed streaming mp3 regression
Diffstat (limited to 'streamer.c')
-rw-r--r--streamer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/streamer.c b/streamer.c
index d923cb41..05706984 100644
--- a/streamer.c
+++ b/streamer.c
@@ -765,7 +765,7 @@ streamer_set_current (playItem_t *it) {
if (sc) {
*sc = 0;
}
- if (!strcmp (cct, "audio/mpeg")) {
+ if (!strcmp (cct, "audio/mpeg") || !strcmp (cct, "audio/x-mpeg")) {
plug = "stdmpg";
}
else if (!strcmp (cct, "application/ogg") || !strcmp (cct, "audio/ogg")) {