Re: [vdr] RGB/PAL over VGA at variable frame rate

2008-08-09 Thread Thomas Hilber
On Sat, Aug 09, 2008 at 11:26:21PM +0400, Goga777 wrote:
> does your idea actually for new generation cards - ATI HD series, Intel 
> G35/45 chipsets with hdmi output ?

currently it does for everything pre-avivo (e.g. before r500 with the 
exception of rs690 which is a r300-style 3d core but 2d is avivo).

I not yet tried with ATI HD or Intel G35/45. Basically I don't see a
problem. The devil is in the details:)

To ease the port to other graphics hardware I did not use special 
pre-avivo registers in my current solution. 

The idea comprises several aspects:

The most important feature is to synchronize video output with the
stream. Nobody cared about that until today. I do not understand that at
all.

It just a pleasant by-product of the sync that in some cases you need not to
deinterlace anymore.

Cheers
  Thomas


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


[vdr] Fedora 9 users vdr-xine? Audio problems?

2008-08-09 Thread Simon Baxter
Hi

I've been trying to get a new x86_64 Fedora Core 9 system working with a 
TT-1500-C and TT-2300-C card, outputting on vdr-xine (to xine) but am having 
audio problems.  I'm running vdr-1.6.0.

I've been trying both vdr-xine 0.8.0 and 0.8.2.

issue 1.
With both versions of vdr-xine, I intermittantly get no audio when I switch 
to a channel.  The same happens if I use the --post vdr_audio switch or not. 
If I then stop xine (and vdr switches back to the FF output) and restart 
xine, the audio is fine.  This happens on different channels on different 
transponders and with both 0.8.0 and 0.8.2.  There's no audio loss when 
using the FF output.

issue 2.
On my other main/production system (which runs x86 kernel in Fedora Core 6) 
the above problem doesn't happen (same dvb cards) but on 0.8.2 I get 
intermittant audio sync problems, so I keep this on 0.8.0 which works fine. 
But I need to change the motherboard on this system as I've run out of PCI 
slots.


Something I'd like to try, but never have before.
With the Fedora 9 there's some changes with pulse audio (or something).  I 
don't know much about this - but am thinking maybe the gnome is doing 
something different than FC6?
Do you think running an FB output help with this?  How does this work, I've 
never tries it?  Do you still run X windows?



Any thoughts, comments, experiences or suggestions?


Thanks
Simon 


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


[vdr] Old subtitles not stopped when switching primary device

2008-08-09 Thread Anssi Hannula
Hi!

When switching the primary device, old subtitles are not removed, and
user may get the subtitles of wrong channel or two sets of subtitles at
the same time.

Attached is a hacky patch that doesn't work if MakePrimaryDevice() is
implemented by a plugin device. Unfortunately I haven't currently got
the time to make a proper patch, but this should give you an idea on the
problem.

-- 
Anssi Hannula
Index: vdr-1.6.0-primdev/device.c
===
--- vdr-1.6.0-primdev/device.c
+++ vdr-1.6.0-primdev/device.c	2008-05-23 22:17:05.0 +0300
@@ -313,6 +313,10 @@
 
 void cDevice::MakePrimaryDevice(bool On)
 {
+  if (On == false) {
+ DELETENULL(liveSubtitle);
+ DELETENULL(dvbSubtitleConverter);
+  }
 }
 
 bool cDevice::SetPrimaryDevice(int n)
Index: vdr-1.6.0-primdev/dvbdevice.c
===
--- vdr-1.6.0-primdev/dvbdevice.c
+++ vdr-1.6.0-primdev/dvbdevice.c	2008-05-23 22:18:03.0 +0300
@@ -486,6 +486,7 @@
 {
   if (On && HasDecoder())
  new cDvbOsdProvider(fd_osd);
+  cDevice::MakePrimaryDevice(On);
 }
 
 bool cDvbDevice::HasDecoder(void) const
___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] RGB/PAL over VGA at variable frame rate

2008-08-09 Thread Goga777
Hi Thomas

does your idea actually for new generation cards - ATI HD series, Intel G35/45 
chipsets with hdmi output ?

Goga



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