Re: [vdr] streamdev CVS - recent tarball?

2010-09-26 Thread Frank Schmirler
On Mon, 20 Sep 2010 12:14:28 +0100, Gavin Hamill wrote
 Ah, it does work, but only if I use http://hostname:port/TS/.
 
 PES/PS/ES do not work. I'm not bothered too much about PES/PS but ES 
 is very useful for streaming radio. How can I help to debug this further?

Thanks for reporting this regression. Streamdev-0.5.0 is not affected - only
the CVS version. Fix is attached.

Regards,
Frank
diff -r -u streamdev-0.5.0-CVS/server/livestreamer.c streamdev-0.5.0-esps/server/livestreamer.c
--- streamdev-0.5.0-CVS/server/livestreamer.c	2010-09-24 21:57:40.0 +0200
+++ streamdev-0.5.0-esps/server/livestreamer.c	2010-09-26 11:15:54.0 +0200
@@ -436,12 +436,13 @@
 
 void cStreamdevLiveStreamer::StartReceiver(void)
 {
-	if (m_Device != NULL  m_NumPids  0  IsRunning()) {
+	if (m_NumPids  0) {
 		Dprintf(Creating Receiver to respect changed pids\n);
 		cReceiver *current = m_Receiver;
 		m_Receiver = new cStreamdevLiveReceiver(this, m_Channel-GetChannelID(), m_Priority, m_Pids);
 		cThreadLock ThreadLock(m_Device);
-		Attach();
+		if (IsRunning())
+			Attach();
 		delete current;
 	}
 	else
___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] vdr xine-lib eac3

2010-09-26 Thread dplu
Hi

I Just test your patch, thanks for it, it applied well but seems not working, 
no e-ac3 sound on sample e-ac3 record for French DVB-T but AC3 sound is still 
OK 

Which xine-lib 1.2 did you use ? this one :
http://hg.debian.org/hg/xine-lib/xine-lib-1.2/
is not allways well synchronized, for example the patch for demux_ts on 
1.1.18 changeset a1ba73e0b475 (april 9) is not on 1.2

I will check another time to see if I made no error on patching

Regards

Le Tuesday 21 September 2010 00:57:39 Jose Alberto Reguero, vous avez écrit :
 El Domingo, 13 de Junio de 2010, Luca Olivetti escribió:
  Al 25/03/10 16:08, En/na Jose Alberto Reguero ha escrit:
   Patch for xine-lib that don't need to patch remux.c to work.
 
  Today I applied this patch (strange it isn't in xine-lib-1.2 yet) but
  there's still no sound on tvehd (vdr 1.7.15, vdr-xine and playing the ts
  directly through xine).
  Do I need some special options to configure xine-lib for this patch to
  take effect?
 
  Bye

 With this two patches vdr-xine work with eac3. I can't test if it still
 work with normal ac3. One patch is for the plugin, and the other is for
 xine-lib 1.2.

 Jose Alberto


___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] vdr xine-lib eac3

2010-09-26 Thread Jose Alberto Reguero
El Domingo 26 Septiembre 2010, dplu escribió:
 Hi
 
 I Just test your patch, thanks for it, it applied well but seems not
 working, no e-ac3 sound on sample e-ac3 record for French DVB-T but AC3
 sound is still OK
 
 Which xine-lib 1.2 did you use ? this one :
 http://hg.debian.org/hg/xine-lib/xine-lib-1.2/
 is not allways well synchronized, for example the patch for demux_ts on
 1.1.18 changeset a1ba73e0b475 (april 9) is not on 1.2
 
 I will check another time to see if I made no error on patching
 
 Regards
 

You need a recent ffmpeg. I use latest hg xine-lib-1.2, and latest ffmpeg svn.

Jose Alberto.

 Le Tuesday 21 September 2010 00:57:39 Jose Alberto Reguero, vous avez 
écrit :
  El Domingo, 13 de Junio de 2010, Luca Olivetti escribió:
   Al 25/03/10 16:08, En/na Jose Alberto Reguero ha escrit:
Patch for xine-lib that don't need to patch remux.c to work.
   
   Today I applied this patch (strange it isn't in xine-lib-1.2 yet) but
   there's still no sound on tvehd (vdr 1.7.15, vdr-xine and playing the
   ts directly through xine).
   Do I need some special options to configure xine-lib for this patch to
   take effect?
   
   Bye
  
  With this two patches vdr-xine work with eac3. I can't test if it still
  work with normal ac3. One patch is for the plugin, and the other is for
  xine-lib 1.2.
  
  Jose Alberto
 
 ___
 vdr mailing list
 vdr@linuxtv.org
 http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] vdr xine-lib eac3

2010-09-26 Thread Darren Salt
I demand that dplu may or may not have written...

[snip]
 http://hg.debian.org/hg/xine-lib/xine-lib-1.2/
 is not allways well synchronized, for example the patch for demux_ts on 
 1.1.18 changeset a1ba73e0b475 (april 9) is not on 1.2

It is...

[snip]
-- 
| Darren Salt| linux at youmustbejoking | nr. Ashington, | Toon
| using Debian GNU/Linux | or ds,demon,co,uk| Northumberland | back!
| + Output *more* particulate pollutants.  BUFFER AGAINST GLOBAL WARMING.

I am not young enough to know everything.

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


[vdr] Fwd: Re: vdr xine-lib eac3

2010-09-26 Thread dplu
Hi

I use a recent ffmepg , I can use ffplay to play the ts records and I have 
sound, even with the e-ac3 spectral extention available in France on DVB-T HD

Some others French user will try from their side also and I will check asap my 
patch and libs ... and install the very latest ffmpeg from git

Thanks for the job

Regards

Le Sunday 26 September 2010 20:47:04 Jose Alberto Reguero, vous avez écrit :
 El Domingo 26 Septiembre 2010, dplu escribió:
  Hi
 
  I Just test your patch, thanks for it, it applied well but seems not
  working, no e-ac3 sound on sample e-ac3 record for French DVB-T but AC3
  sound is still OK
 
  Which xine-lib 1.2 did you use ? this one :
  http://hg.debian.org/hg/xine-lib/xine-lib-1.2/
  is not allways well synchronized, for example the patch for demux_ts on
  1.1.18 changeset a1ba73e0b475 (april 9) is not on 1.2
 
  I will check another time to see if I made no error on patching
 
  Regards

 You need a recent ffmpeg. I use latest hg xine-lib-1.2, and latest ffmpeg
 svn.

 Jose Alberto.

  Le Tuesday 21 September 2010 00:57:39 Jose Alberto Reguero, vous avez

 écrit :
   El Domingo, 13 de Junio de 2010, Luca Olivetti escribió:
Al 25/03/10 16:08, En/na Jose Alberto Reguero ha escrit:
 Patch for xine-lib that don't need to patch remux.c to work.
   
Today I applied this patch (strange it isn't in xine-lib-1.2 yet) but
there's still no sound on tvehd (vdr 1.7.15, vdr-xine and playing the
ts directly through xine).
Do I need some special options to configure xine-lib for this patch
to take effect?
   
Bye
  
   With this two patches vdr-xine work with eac3. I can't test if it still
   work with normal ac3. One patch is for the plugin, and the other is for
   xine-lib 1.2.
  
   Jose Alberto
 
  ___
  vdr mailing list
  vdr@linuxtv.org
  http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr

 ___
 vdr mailing list
 vdr@linuxtv.org
 http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr



---


___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr