libspark/playback_libeplayer3: treat rtmp/mms as http stream

Origin commit data
------------------
Branch: master
Commit: 079d28cc86
Author: martii <m4rtii@gmx.de>
Date: 2012-11-14 (Wed, 14 Nov 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
martii
2012-11-14 14:20:31 +01:00
parent c9e0d0b6a4
commit 3050f34032

View File

@@ -129,6 +129,18 @@ bool cPlayback::Start(char *filename, unsigned short vpid, int vtype, unsigned s
printf("http://\n");
isHTTP = true;
}
#ifdef MARTII
else if(!strncmp("rtmp://", filename, 7))
{
printf("rtmp://\n");
isHTTP = true;
}
else if(!strncmp("mms://", filename, 6))
{
printf("mss://\n");
isHTTP = true;
}
#endif
else if(!strncmp("file://", filename, 7))
{
printf("file://\n");