diff options
author | phintuka <phintuka> | 2009-08-06 11:23:31 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-08-06 11:23:31 +0000 |
commit | 35dee320493e08c75f5430b51752ea7e96e9a87d (patch) | |
tree | 6d3cc392a832ffa6a07a13695578315b8cde77c2 | |
parent | ed470e09852b1c96114f3b5042e3cc5a3d97e593 (diff) | |
download | xineliboutput-35dee320493e08c75f5430b51752ea7e96e9a87d.tar.gz xineliboutput-35dee320493e08c75f5430b51752ea7e96e9a87d.tar.bz2 |
Enabled UDP/RTP for mpeg-ts
-rw-r--r-- | frontend_svr.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/frontend_svr.c b/frontend_svr.c index 5cecb6d0..2d4b7233 100644 --- a/frontend_svr.c +++ b/frontend_svr.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend_svr.c,v 1.77 2009-08-06 11:22:26 phintuka Exp $ + * $Id: frontend_svr.c,v 1.78 2009-08-06 11:23:31 phintuka Exp $ * */ @@ -1023,13 +1023,6 @@ void cXinelibServer::Handle_Control_RTP(int cli, const char *arg) CloseDataConnection(cli); -#if VDRVERSNUM > 10700 - // UDP/RTP not MPEG-TS compatible yet - fd_control[cli].write_cmd("RTP: RTP transport not implemented for vdr-1.7.x.\r\n"); - LOGMSG("RTP transport not implemented for vdr-1.7.x"); - return; -#endif - if(!xc.remote_usertp) { fd_control[cli].write_cmd("RTP: RTP transport disabled in configuration.\r\n"); LOGMSG("RTP transports disabled"); @@ -1057,13 +1050,6 @@ void cXinelibServer::Handle_Control_UDP(int cli, const char *arg) CloseDataConnection(cli); -#if VDRVERSNUM > 10700 - // UDP/RTP not MPEG-TS compatible yet - fd_control[cli].write_cmd("UDP: UDP transport not implemented vor vdr-1.7.x.\r\n"); - LOGMSG("UDP transport not implemented for vdr-1.7.x"); - return; -#endif - if(!xc.remote_useudp) { fd_control[cli].write_cmd("UDP: UDP transport disabled in configuration.\r\n"); LOGMSG("UDP transport disabled in configuration"); |