summaryrefslogtreecommitdiff
path: root/xine_input_vdr.c
diff options
context:
space:
mode:
authorphelin <phelin>2008-02-19 01:08:59 +0000
committerphelin <phelin>2008-02-19 01:08:59 +0000
commitb44f5ba524222e961791caf595477fbd9d03e635 (patch)
treed7d92d2025666a6bcb26db99b994b5cca194b67b /xine_input_vdr.c
parent9f495913274cce42ceb6582733154d8f05157922 (diff)
downloadxineliboutput-b44f5ba524222e961791caf595477fbd9d03e635.tar.gz
xineliboutput-b44f5ba524222e961791caf595477fbd9d03e635.tar.bz2
Add 'xvdr+pipe' and 'xvdr:pipe' MRLs.
Diffstat (limited to 'xine_input_vdr.c')
-rw-r--r--xine_input_vdr.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/xine_input_vdr.c b/xine_input_vdr.c
index 186b1499..16d07626 100644
--- a/xine_input_vdr.c
+++ b/xine_input_vdr.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: xine_input_vdr.c,v 1.114 2008-02-19 00:43:04 phelin Exp $
+ * $Id: xine_input_vdr.c,v 1.115 2008-02-19 01:08:59 phelin Exp $
*
*/
@@ -6050,9 +6050,11 @@ static int vdr_plugin_open_net (input_plugin_t *this_gen)
if((!strncasecmp(this->mrl, "xvdr+tcp://", 11) && (this->tcp=1)) ||
(!strncasecmp(this->mrl, "xvdr+udp://", 11) && (this->udp=1)) ||
(!strncasecmp(this->mrl, "xvdr+rtp://", 11) && (this->rtp=1)) ||
+ (!strncasecmp(this->mrl, "xvdr+pipe://", 12)) ||
(!strncasecmp(this->mrl, "xvdr:tcp://", 11) && (this->tcp=1)) ||
(!strncasecmp(this->mrl, "xvdr:udp://", 11) && (this->udp=1)) ||
(!strncasecmp(this->mrl, "xvdr:rtp://", 11) && (this->rtp=1)) ||
+ (!strncasecmp(this->mrl, "xvdr:pipe://", 12)) ||
(!strncasecmp(this->mrl, "xvdr://", 7))) {
char *phost = strdup(strstr(this->mrl, "//") + 2);