* Try to trick Sony Blu-ray home theater systems into playing MKVs.
This commit is contained in:
parent
bd22632840
commit
e529b5dd6b
10
upnphttp.c
10
upnphttp.c
@ -298,14 +298,12 @@ intervening space) by either an integer or the keyword "infinite". */
|
||||
h->reqflags |= FLAG_MIME_AVI_DIVX;
|
||||
}
|
||||
/* X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="Blu-ray Disc Player"; mv="2.0" */
|
||||
else if(strstrc(p, "Blu-ray Disc Player", '\r'))
|
||||
{
|
||||
h->req_client = ESonyBDP;
|
||||
h->reqflags |= FLAG_DLNA;
|
||||
}
|
||||
/* X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="BLU-RAY HOME THEATRE SYSTEM"; mv="2.0"; */
|
||||
/* Sony SMP-100 needs the same treatment as their BDP-S370 */
|
||||
/* X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="Media Player"; mv="2.0" */
|
||||
else if(strstrc(p, "Media Player", '\r'))
|
||||
else if(strstrc(p, "Blu-ray Disc Player", '\r') ||
|
||||
strstrc(p, "BLU-RAY HOME THEATRE SYSTEM", '\r') ||
|
||||
strstrc(p, "Media Player", '\r'))
|
||||
{
|
||||
h->req_client = ESonyBDP;
|
||||
h->reqflags |= FLAG_DLNA;
|
||||
|
Loading…
x
Reference in New Issue
Block a user