* Add MIME workarounds for WAV files on Denon receivers.

This commit is contained in:
Justin Maggard
2009-06-04 19:13:18 +00:00
parent 8dc1a82d7e
commit a6d01a85e3
4 changed files with 16 additions and 1 deletions

View File

@ -233,6 +233,7 @@ intervening space) by either an integer or the keyword "infinite". */
h->req_client = EPS3;
h->reqflags |= FLAG_DLNA;
h->reqflags |= FLAG_MIME_AVI_DIVX;
h->reqflags |= FLAG_MIME_WAV_WAV;
}
else if(strncmp(p, "SamsungWiselinkPro", 18)==0)
{
@ -240,6 +241,12 @@ intervening space) by either an integer or the keyword "infinite". */
h->reqflags |= FLAG_DLNA;
h->reqflags |= FLAG_MIME_AVI_DIVX;
}
else if(strstr(p, "bridgeCo-DMP/3"))
{
h->req_client = EDenonReceiver;
h->reqflags |= FLAG_MIME_WAV_WAV;
h->reqflags |= FLAG_WAV_NO_DLNA;
}
else if(strcasestr(p, "DLNADOC/1.50"))
{
h->req_client = EStandardDLNA150;
@ -263,6 +270,7 @@ intervening space) by either an integer or the keyword "infinite". */
h->req_client = EPS3;
h->reqflags |= FLAG_DLNA;
h->reqflags |= FLAG_MIME_AVI_DIVX;
h->reqflags |= FLAG_MIME_WAV_WAV;
}
}
else if(strncasecmp(line, "Transfer-Encoding", 17)==0)