mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-27 15:33:00 +02:00
libspark/playback_libeplayer3: treat rtmp/mms as http stream
This commit is contained in:
@@ -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");
|
||||
|
Reference in New Issue
Block a user