* Add MIME workarounds for WAV files on Denon receivers.
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user