Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Re: Looking for testers: streamdev-0.3.3-pre2



Wolfgang Fritz wrote:
> Sascha Volkenandt wrote:
> 
>>Hi,
>>
>>after having tested the pre1 with a few testers, I'd like to make the second 
>>pre public...
>>
> 
> 
> I just tried it an found that playing a *radio* channel using
> 
> xine http://vdr:3000/ES/150
> 
> does not work any more. In the xine message window I get (hand copied)
> 
> xine: Plugin kann MRL [http://vdr:3000/ES/150] nicht öffnen
> input-http: http-status ungleich 2xx: >409 Channel not available<
> 
> This used to work with 0.3.1.
> 
[cut]

I recompiled with DEBUG=1 and with the helpp of the debug messages I
probably found the bug (see attached diff).

Wolfgang


Index: livestreamer.c
===================================================================
RCS file: /home/cvs/cvsroot/vdr/vdr/PLUGINS/src/streamdev/server/livestreamer.c,v
retrieving revision 1.1.1.1
diff -p -u -r1.1.1.1 livestreamer.c
--- livestreamer.c	14 Aug 2004 13:32:38 -0000	1.1.1.1
+++ livestreamer.c	14 Aug 2004 14:49:17 -0000
@@ -137,7 +137,7 @@ bool cStreamdevLiveStreamer::SetChannel(
 		{
 			int pid = ISRADIO(Channel) ? Channel->Apid1() : Channel->Vpid();
 			m_Remux = new cTS2ESRemux(pid);
-			SetPid(pid, true);
+			return SetPid(pid, true);
 			break;
 		}
 

Home | Main Index | Thread Index