diff options
Diffstat (limited to 'xine_input_vdr.c')
-rw-r--r-- | xine_input_vdr.c | 4 |
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); |