diff options
| author | Fraxinas <andreas.frisch@multimedia-labs.de> | 2009-05-29 13:48:31 +0200 |
|---|---|---|
| committer | Fraxinas <andreas.frisch@multimedia-labs.de> | 2009-05-29 13:48:31 +0200 |
| commit | 7bec3eb85bd3329ec6611cf65666ff8948f4916a (patch) | |
| tree | 74e8d96e3f48b2b440a55a56e40edbf09e63e737 /lib/service/servicemp3.cpp | |
| parent | da9ff2d4793dd5c6ab21763b3c4189ff2d4ab972 (diff) | |
| download | enigma2-7bec3eb85bd3329ec6611cf65666ff8948f4916a.tar.gz enigma2-7bec3eb85bd3329ec6611cf65666ff8948f4916a.zip | |
add streaming protocols for correct uri handling
Diffstat (limited to 'lib/service/servicemp3.cpp')
| -rw-r--r-- | lib/service/servicemp3.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/service/servicemp3.cpp b/lib/service/servicemp3.cpp index 1f3e2d03..b3f99744 100644 --- a/lib/service/servicemp3.cpp +++ b/lib/service/servicemp3.cpp @@ -250,7 +250,7 @@ eServiceMP3::eServiceMP3(const char *filename, const char *title): m_filename(fi sourceinfo.containertype = ctVCD; sourceinfo.is_video = TRUE; } - if ( (strncmp(filename, "http://", 7)) == 0 || (strncmp(filename, "udp://", 6)) == 0 || (strncmp(filename, "rtsp://", 7)) == 0 ) + if ( (strncmp(filename, "http://", 7)) == 0 || (strncmp(filename, "udp://", 6)) == 0 || (strncmp(filename, "rtp://", 6)) == 0 || (strncmp(filename, "https://", 8)) == 0 || (strncmp(filename, "mms://", 6)) == 0 || (strncmp(filename, "rtsp://", 7)) == 0 ) sourceinfo.is_streaming = TRUE; gchar *uri; |
