libeplayer3/player: support bluray urls

This commit is contained in:
martii
2014-06-19 10:46:36 +02:00
parent 4e2ff2ce6d
commit e7381352d4

View File

@@ -79,6 +79,8 @@ bool Player::Open(const char *Url, bool _noprobe)
} else if (strstr(Url, "://")) {
url = Url;
isHttp = strncmp("file://", Url, 7);
} else if (!strncmp(Url, "bluray:/", 8)) {
url = Url;
} else {
fprintf(stderr, "%s %s %d: Unknown stream (%s)\n", __FILE__, __func__, __LINE__, Url);
return false;