Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-31 Thread Ales Jurik
On Sunday 31 of May 2009, Niels Wagenaar wrote:
> Currently I use the Reel-VDR fork and it seems to work quite nicely. And
> it doesn't require many patches to get it working, only some S2API based
> patches.
>
> Regards,
>
> Niels Wagenaar

Please could you send patches you are using (especially for reelvdr and 
s2api)?

Thanks 

BR,

Ales



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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-31 Thread Reinhard Nissl
Hi,

Magnus Hörlin schrieb:

> Well, it's A LOT better than nothing. Reinhard, you are a true hero. Now 
> if only ffwd/rew/skip would be as smooth with vdr-xine as it is with 
> xineliboutput... Anyway, your xinelib-1.2 vdpau patches are brilliant. 
> I've used every one of them since day one.

Well, have a look into xineDevice.c and locate
cXineDevice::HasIBPTrickSpeed(). Then remove the comment and
apply the attached patch to VDR.

The problem is, that I don't know which speed calculation to use
in SetTrickSpeed(). So I asked kls to supply this info as in the
attached patch but he thinks of changing the semantic of
SetTrickSpeed() at all. That's why I haven't released this
functionality yet.

Bye.
-- 
Dipl.-Inform. (FH) Reinhard Nissl
mailto:rni...@gmx.de
--- ../vdr-1.7.5-pre/./player.h	2009-03-08 13:29:10.0 +0100
+++ ./player.h	2009-04-02 20:53:04.0 +0200
@@ -27,7 +27,7 @@ protected:
   bool DeviceFlush(int TimeoutMs = 0) { return device ? device->Flush(TimeoutMs) : true; }
   bool DeviceHasIBPTrickSpeed(void) { return device ? device->HasIBPTrickSpeed() : false; }
   bool DeviceIsPlayingVideo(void) { return device ? device->IsPlayingVideo() : false; }
-  void DeviceTrickSpeed(int Speed) { if (device) device->TrickSpeed(Speed); }
+  void DeviceTrickSpeed(int Speed, bool IBP) { if (device) device->TrickSpeed(Speed, IBP); }
   void DeviceClear(void) { if (device) device->Clear(); }
   void DevicePlay(void) { if (device) device->Play(); }
   void DeviceFreeze(void) { if (device) device->Freeze(); }
--- ../vdr-1.7.5-pre/./dvbdevice.c	2009-01-10 11:07:33.0 +0100
+++ ./dvbdevice.c	2009-04-02 20:52:05.0 +0200
@@ -1150,7 +1150,7 @@ int64_t cDvbDevice::GetSTC(void)
   return -1;
 }
 
-void cDvbDevice::TrickSpeed(int Speed)
+void cDvbDevice::TrickSpeed(int Speed, bool IBP)
 {
   if (fd_video >= 0)
  CHECK(ioctl(fd_video, VIDEO_SLOWMOTION, Speed));
--- ../vdr-1.7.5-pre/./dvbdevice.h	2008-12-06 14:31:12.0 +0100
+++ ./dvbdevice.h	2009-04-02 20:51:49.0 +0200
@@ -143,7 +143,7 @@ protected:
   virtual int PlayTsAudio(const uchar *Data, int Length);
 public:
   virtual int64_t GetSTC(void);
-  virtual void TrickSpeed(int Speed);
+  virtual void TrickSpeed(int Speed, bool IBP);
   virtual void Clear(void);
   virtual void Play(void);
   virtual void Freeze(void);
--- ../vdr-1.7.5-pre/./dvbplayer.c	2009-03-29 18:39:43.0 +0200
+++ ./dvbplayer.c	2009-04-02 20:58:58.0 +0200
@@ -308,7 +308,7 @@ void cDvbPlayer::TrickSpeed(int Incremen
  int sp = (Speeds[nts] > 0) ? Mult / Speeds[nts] : -Speeds[nts] * Mult;
  if (sp > MAX_VIDEO_SLOWMOTION)
 sp = MAX_VIDEO_SLOWMOTION;
- DeviceTrickSpeed(sp);
+ DeviceTrickSpeed(sp, playMode == pmFast && playDir == pdForward && DeviceHasIBPTrickSpeed());
  }
 }
 
--- ../vdr-1.7.5-pre/./device.h	2009-03-28 22:53:26.0 +0100
+++ ./device.h	2009-04-02 20:49:30.0 +0200
@@ -556,7 +556,7 @@ public:
   virtual bool HasIBPTrickSpeed(void) { return false; }
///< Returns true if this device can handle all frames in 'fast forward'
///< trick speeds.
-  virtual void TrickSpeed(int Speed);
+  virtual void TrickSpeed(int Speed, bool IBP);
///< Sets the device into a mode where replay is done slower.
///< Every single frame shall then be displayed the given number of
///< times.
--- ../vdr-1.7.5-pre/./device.c	2009-01-30 17:01:53.0 +0100
+++ ./device.c	2009-04-02 20:49:49.0 +0200
@@ -987,7 +987,7 @@ int64_t cDevice::GetSTC(void)
   return -1;
 }
 
-void cDevice::TrickSpeed(int Speed)
+void cDevice::TrickSpeed(int Speed, bool IBP)
 {
 }
 
___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-31 Thread Magnus Hörlin
Reinhard Nissl wrote:
> Hi,
>
> Magnus Hörlin schrieb:
>
>   
>> I have to agree that the vdpau deinterlacers are better than the tvtime 
>> ones, including the temporal only deinterlacer that is used for 1080i. 
>> But it is as you say a little annoying that paused images are not 
>> deinterlaced. I use the ION platform with 9400M.
>> 
>
> Well, the attached patch is better than nothing but a better
> approach would be to render both fields into a single surface
> before displaying them. At the moment, both fields are rendered
> separately.
>
> Bye.
>   
> 
>
> ___
> vdr mailing list
> vdr@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
>   
Well, it's A LOT better than nothing. Reinhard, you are a true hero. Now 
if only ffwd/rew/skip would be as smooth with vdr-xine as it is with 
xineliboutput... Anyway, your xinelib-1.2 vdpau patches are brilliant. 
I've used every one of them since day one.
/Magnus H


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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-31 Thread Reinhard Nissl
Hi,

Niels Wagenaar schrieb:

> 2. Using plugins like vdr-xine and/or xineliboutput you have buffering
> time which is annoying for zap speeds on encrypted channels.

Here you can find the changeset which is responsible for the
buffering issue.

http://sourceforge.net/mailarchive/forum.php?thread_name=4A15672E.5090908%40gmx.de&forum_name=xine-devel

If you revert the changeset, zapping should behave as usual.

Bye.
-- 
Dipl.-Inform. (FH) Reinhard Nissl
mailto:rni...@gmx.de

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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-31 Thread Reinhard Nissl
Hi,

Magnus Hörlin schrieb:

> I have to agree that the vdpau deinterlacers are better than the tvtime 
> ones, including the temporal only deinterlacer that is used for 1080i. 
> But it is as you say a little annoying that paused images are not 
> deinterlaced. I use the ION platform with 9400M.

Well, the attached patch is better than nothing but a better
approach would be to render both fields into a single surface
before displaying them. At the moment, both fields are rendered
separately.

Bye.
-- 
Dipl.-Inform. (FH) Reinhard Nissl
mailto:rni...@gmx.de
diff --git a/src/video_out/video_out_vdpau.c b/src/video_out/video_out_vdpau.c
--- a/src/video_out/video_out_vdpau.c
+++ b/src/video_out/video_out_vdpau.c
@@ -1386,7 +1394,7 @@ static void vdpau_display_frame (vo_driv
 
   XLockDisplay( this->display );
 
-  if ( frame->format==XINE_IMGFMT_VDPAU && this->deinterlace && non_progressive && stream_speed && frame_duration>2500 ) {
+  if ( frame->format==XINE_IMGFMT_VDPAU && this->deinterlace && non_progressive /* && stream_speed */ && frame_duration>2500 ) {
 VdpTime current_time = 0;
 VdpVideoSurface past[2];
 VdpVideoSurface future[1];
___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-31 Thread Niels Wagenaar
Op Zo, 31 mei, 2009 11:47, schreef Magnus Hörlin:
> Seppo Ingalsuo wrote:
> I have to agree that the vdpau deinterlacers are better than the tvtime
> ones, including the temporal only deinterlacer that is used for 1080i.
> But it is as you say a little annoying that paused images are not
> deinterlaced. I use the ION platform with 9400M.
> /Magnus H
>

Yes, the deinterlacer works much nicer in combination with VDPAU. But with
VDPAU I have two issues and this is why I haven't upgraded to VDPAU
completely as off yet:

1. The maximum usage through VDPAU is in my case an additional 50W
(compared to the ExtensionHD with a maximum of 10W) because I've got a
PCI-e based videocard;
2. Using plugins like vdr-xine and/or xineliboutput you have buffering
time which is annoying for zap speeds on encrypted channels.

Currently I use the Reel-VDR fork and it seems to work quite nicely. And
it doesn't require many patches to get it working, only some S2API based
patches.

Regards,

Niels Wagenaar



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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-31 Thread Magnus Hörlin
Seppo Ingalsuo wrote:
> Pasi Kärkkäinen wrote:
>   
>> Nice.
>> How's the deinterlacing quality? 
>>   
>> 
> The 576i movement is smoother (not frame rate but the lowpass effect) 
> than with GreedyH/GreedyL deinterlacers I  used with software decoding. 
> Greedy deinterlacers did show show jaggies sometimes so I'd say it's 
> generally better.  My viewing size for VDPAU are 46" and 32". Projector 
> users may prefer a sharper picture perhaps? I haven't tried 1080i stuff 
> so I can't comment that.
>
> The only problem with deinterlacing is that paused picture in vdr 
> sometimes looks like not deinterlaced. There could be comb effect in 
> entire screen or perhaps just one line.
>
> My graphics cards are GS8400. I wonder if there are different 
> deinterlacers around in different nvidia generations?
>
> BR,
> Seppo
>
>
> ___
> vdr mailing list
> vdr@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
>
>   
I have to agree that the vdpau deinterlacers are better than the tvtime 
ones, including the temporal only deinterlacer that is used for 1080i. 
But it is as you say a little annoying that paused images are not 
deinterlaced. I use the ION platform with 9400M.
/Magnus H


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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-30 Thread Seppo Ingalsuo
Pasi Kärkkäinen wrote:
> Nice.
> How's the deinterlacing quality? 
>   
The 576i movement is smoother (not frame rate but the lowpass effect) 
than with GreedyH/GreedyL deinterlacers I  used with software decoding. 
Greedy deinterlacers did show show jaggies sometimes so I'd say it's 
generally better.  My viewing size for VDPAU are 46" and 32". Projector 
users may prefer a sharper picture perhaps? I haven't tried 1080i stuff 
so I can't comment that.

The only problem with deinterlacing is that paused picture in vdr 
sometimes looks like not deinterlaced. There could be comb effect in 
entire screen or perhaps just one line.

My graphics cards are GS8400. I wonder if there are different 
deinterlacers around in different nvidia generations?

BR,
Seppo


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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-30 Thread Pasi Kärkkäinen
On Fri, May 29, 2009 at 05:19:21PM +0300, Seppo Ingalsuo wrote:
> Pasi Kärkkäinen wrote:
> > So you have 576i 50Hz interlaced video playing at 50fps de-interlaced? 
> >   
> Yes, the output is 1080p50.
> 

Nice. 

How's the deinterlacing quality? 

-- Pasi

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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-29 Thread Seppo Ingalsuo
Pasi Kärkkäinen wrote:
> So you have 576i 50Hz interlaced video playing at 50fps de-interlaced? 
>   
Yes, the output is 1080p50.

Seppo


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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-29 Thread Gerald Dachs
Magnus Hörlin schrieb:
> xineliboutput HD OSD works as of wednesdays cvs.

If you mean an OSD with more than lets say 1000x800 Pixels, I forgot the
exact numbers, I use this already with the stable xineliboutput 1.0.4.

Gerald


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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-29 Thread Magnus Hörlin
Pasi Kärkkäinen wrote:
> On Thu, May 28, 2009 at 08:54:05PM +0300, Seppo Ingalsuo wrote:
>   
>> Luca Olivetti kirjoitti:
>> 
>>> OTOH with my setup it works poorly (artifacts, banding, freezing, 
>>> changes in color, etc.) and I'm not the only one, so I'm not sure vdpau 
>>> support is mature enough for inclusion in xine-lib.
>>>   
>>>   
>> Here VDPAU works close to perfectly with two different (Intel E8200, AMD 
>> 4850E + GeForce 8400) Ubuntu Jaunty boxes with included restricted 
>> Nvidia driver and self compiled VDPAU enabled xine-lib.
>>
>> I had picture tearing that was solved by disabling composite extension. 
>> I lost possibility for HUD OSD for now. I needed to force also 50 Hz 
>> video mode to HDMI with custom xorg.conf modeline. Somehow probably due 
>> to extremely low CPU load VDPAU also solved breaking SPDIF sound that I 
>> had on my Asus P5Q motherboard (with similar setup the AMD780G mobo 
>> never had sound problems). 576i video scaling and de-interlacing is good 
>> quality in VDPAU.
>>
>> 
>
> So you have 576i 50Hz interlaced video playing at 50fps de-interlaced? 
>
> -- Pasi
>
> ___
> vdr mailing list
> vdr@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
>
>   
Well, at least that's how I use it most of the time and it's working 
brilliantly. To me, vdpau is the best thing that's ever happened to the 
htpc world next to VDR of course... When it comes to xine-lib, I must 
say that XBMC uses vdpau in a better way. VDR HD recordings look a lot 
better when played back in XBMC than with  xineliboutput. But for anyone 
interested, xineliboutput HD OSD works as of wednesdays cvs.
/Magnus H


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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-29 Thread Pasi Kärkkäinen
On Thu, May 28, 2009 at 08:54:05PM +0300, Seppo Ingalsuo wrote:
> Luca Olivetti kirjoitti:
> > OTOH with my setup it works poorly (artifacts, banding, freezing, 
> > changes in color, etc.) and I'm not the only one, so I'm not sure vdpau 
> > support is mature enough for inclusion in xine-lib.
> >   
> Here VDPAU works close to perfectly with two different (Intel E8200, AMD 
> 4850E + GeForce 8400) Ubuntu Jaunty boxes with included restricted 
> Nvidia driver and self compiled VDPAU enabled xine-lib.
> 
> I had picture tearing that was solved by disabling composite extension. 
> I lost possibility for HUD OSD for now. I needed to force also 50 Hz 
> video mode to HDMI with custom xorg.conf modeline. Somehow probably due 
> to extremely low CPU load VDPAU also solved breaking SPDIF sound that I 
> had on my Asus P5Q motherboard (with similar setup the AMD780G mobo 
> never had sound problems). 576i video scaling and de-interlacing is good 
> quality in VDPAU.
>

So you have 576i 50Hz interlaced video playing at 50fps de-interlaced? 

-- Pasi

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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-28 Thread Joerg Bornkessel

> Hello,

> i recently built a vdr-1.7.6 + reelbox pluging, following the vdr-wiki
> for VDR DVB-S2 on OpenSuse.

> Everything was build properly, but unfortunately the eHD freezes after a
> few Minutes (not only when replaying recordings, but also with live TV).
> I know that there are some problems concerning the new TS format of
> VDR. 

I fightet any times ago with the same problem.
eHD was not usable.

In my case, i found a solution in vdrportal.de for the dvb card
budget-core driver.

I am load now the budget-core driver with a bigger bufsize,
after this eHD work perfektly, no freez video anymore.

On gentoo im added to /etc/modrobe.d/budget-core{.conf}

options budget_core bufsize=1410

update-modules --force, reload module budged-core or reboot


good luck
-- 
Regards
Gentoo Developer
Joerg Bornkessel 


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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-28 Thread Ales Jurik
On Thursday 28 of May 2009, Josce wrote:
>
> When I opened the link and tried to download the script some other
> page opened up that wanted me to do something. Sadly I don't know what.
> A howto in Czech is totally useless to me. I really can't understand a word
> of it. (No offense to the Czech's, I don't think a howto in Finnish would
> be terribly helpfull for someone from the Czech republic ...)
>
> But if the script is the same as I found at
> http://reelbox-forum.com/showthread.php?t=16436 it will not help, because
> it didn't work for me.
>
You can go into the script and see what it is doing. I've used it in this way. 
Then (after understanding the script) you can use patches attached. 

Or you can go to http://www.vdr-portal.de/board/board.php?boardid=85 - it is 
german vdr forum. There you can find a lot of patches too and it is not in 
Czech but in German - I don't know if it is better for you, but could be. I 
know that Czech is not widely understanded as many other languages ;) .

BR,

Ales

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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-28 Thread Falk Spitzberg
Am Donnerstag, den 28.05.2009, 17:50 +0300 schrieb Josce:
> Falk Spitzberg wrote:
> > Hello,
> > 
> > i recently built a vdr-1.7.6 + reelbox pluging, following the vdr-wiki
> > for VDR DVB-S2 on OpenSuse.
> > 
> > Everything was build properly, but unfortunately the eHD freezes after a
> > few Minutes (not only when replaying recordings, but also with live TV).
> > I know that there are some problems concerning the new TS format of
> > VDR. 
> > 
> > Does anyone have a solution for this problem? I don't like the idea to
> > use VDR 1.7.0 or an even older version.
> > 
> > Any help is greatly appreceated.
> 
> Hello,
> 
> I installed vdr-1.7.6 + reelbox plugin a week ago using:
> http://www.vdr-wiki.de/wiki/index.php/OpenSUSE_VDR_DVB-S2#openSUSE_VDR_DVB-S2_-_Teil2.1:_eHD
> which propably is the one you are refering to. Then I applied the 
> vdr-1.7.6-1.7.7.diff
> patch which worked except that I had to change the osd.h file a little for 
> the patch
> to run without complaints. There is some memory leak problem with vdr-1.7.7 
> but
> Klaus is looking into it, see: 
> http://www.linuxtv.org/pipermail/vdr/2009-May/020636.html

I got it also up an running with VDR-1.7.7 in the meantime. And I
finally tested with 1.7.0 wich is known to work pretty stable with the
eHD. 

All three versions show the same problem. It works for a few Minutes and
then the eHD freezes. Since this happens with three different sofware
setups, and because the eHD is always kompletly dead (it needs a power
off to restart), i also suspected a hardware problem.

I placed a Fan next to the card and, guess what, ... it works for more
than an hour right now... and still running.



> 
> Reelbox plugin still occasionally freezes, but so it has always done.
> The reelbox plugin is of course a joke and I deeply regret buying the
> card from Reel-Multimedia. Hopefully the VDPAU is more promising.
> 
> BR,
> 
> Josce
> 
> ___
> vdr mailing list
> vdr@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
-- 
Falk Spitzberg
Tel: +49 5242 901626
E-Mail: p...@spitzberg.de


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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-28 Thread Seppo Ingalsuo
Luca Olivetti kirjoitti:
> OTOH with my setup it works poorly (artifacts, banding, freezing, 
> changes in color, etc.) and I'm not the only one, so I'm not sure vdpau 
> support is mature enough for inclusion in xine-lib.
>   
Here VDPAU works close to perfectly with two different (Intel E8200, AMD 
4850E + GeForce 8400) Ubuntu Jaunty boxes with included restricted 
Nvidia driver and self compiled VDPAU enabled xine-lib.

I had picture tearing that was solved by disabling composite extension. 
I lost possibility for HUD OSD for now. I needed to force also 50 Hz 
video mode to HDMI with custom xorg.conf modeline. Somehow probably due 
to extremely low CPU load VDPAU also solved breaking SPDIF sound that I 
had on my Asus P5Q motherboard (with similar setup the AMD780G mobo 
never had sound problems). 576i video scaling and de-interlacing is good 
quality in VDPAU.

There are not many FTA HDTV channels but SDTV on Finnish DVB-T and 
European DVB-S works great!

Cheers,
Seppo


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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-28 Thread Josce
Ales Jurik wrote:
> On Thursday 28 of May 2009, Luca Olivetti wrote:
>> En/na VDR User ha escrit:
>>> On Thu, May 28, 2009 at 7:50 AM, Josce  wrote:
 Reelbox plugin still occasionally freezes, but so it has always done.
 The reelbox plugin is of course a joke and I deeply regret buying the
 card from Reel-Multimedia. Hopefully the VDPAU is more promising.
>>> Sorry for OT but just wanted to note that I and many other users I
>>> know are using VDPAU now and it works great.  I believe the devs are
>>> preparing to submit a patch to Darren Salt so it may become a part of
>>> vanilla xine-lib.  A huge thanks to the devs for their work!
>> OTOH with my setup it works poorly (artifacts, banding, freezing,
>> changes in color, etc.) and I'm not the only one, so I'm not sure vdpau
>> support is mature enough for inclusion in xine-lib.
>>
>> Bye
> 
> I've installed 2 eHD's. Working for hours daily without problems, but huge 
> patching of vdr and reelbox plugin (and skinreel3 plugin) is necessary.
> 
> Try to look at http://www.cssf.cz/showthread.php?t=34104 - there is script 
> and 
> patches, also some howto's - but in Czech. It was written for vdr-1.7.5, but 
> I'm now using it with vdr-1.7.7 without problems.

When I opened the link and tried to download the script some other
page opened up that wanted me to do something. Sadly I don't know what.
A howto in Czech is totally useless to me. I really can't understand a word of 
it.
(No offense to the Czech's, I don't think a howto in Finnish would
be terribly helpfull for someone from the Czech republic ...)

But if the script is the same as I found at 
http://reelbox-forum.com/showthread.php?t=16436
it will not help, because it didn't work for me.

BR,

Josce

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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-28 Thread Luca Olivetti
En/na VDR User ha escrit:

>> OTOH with my setup it works poorly (artifacts, banding, freezing,
>> changes in color, etc.) and I'm not the only one, so I'm not sure vdpau
>> support is mature enough for inclusion in xine-lib.
> 
> Are you sure you're not experiencing driver problems?  Btw, the vdpau
> devs are really good about fixing things if you provide them with a
> sample to work with.  A backtrace doesn't hurt either.


I'm not sure about anything: I asked on the mailing list and on the IRC 
channel and got 0 replies (well, one from the mailing list but it was a 
reply direct to me from a user telling me he has the same problems).

Bye
-- 
Luca

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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-28 Thread Ales Jurik
On Thursday 28 of May 2009, Luca Olivetti wrote:
> En/na VDR User ha escrit:
> > On Thu, May 28, 2009 at 7:50 AM, Josce  wrote:
> >> Reelbox plugin still occasionally freezes, but so it has always done.
> >> The reelbox plugin is of course a joke and I deeply regret buying the
> >> card from Reel-Multimedia. Hopefully the VDPAU is more promising.
> >
> > Sorry for OT but just wanted to note that I and many other users I
> > know are using VDPAU now and it works great.  I believe the devs are
> > preparing to submit a patch to Darren Salt so it may become a part of
> > vanilla xine-lib.  A huge thanks to the devs for their work!
>
> OTOH with my setup it works poorly (artifacts, banding, freezing,
> changes in color, etc.) and I'm not the only one, so I'm not sure vdpau
> support is mature enough for inclusion in xine-lib.
>
> Bye

I've installed 2 eHD's. Working for hours daily without problems, but huge 
patching of vdr and reelbox plugin (and skinreel3 plugin) is necessary.

Try to look at http://www.cssf.cz/showthread.php?t=34104 - there is script and 
patches, also some howto's - but in Czech. It was written for vdr-1.7.5, but 
I'm now using it with vdr-1.7.7 without problems.

The problems you are talking about could also be due to problems in TS stream 
as reelbox plugin don't test too much incoming data. Distorted data could 
cause hangup of eHD. 

If you use vdr-sc update to latest version from mercurial, it could help on 
some channels.

BR,

Ales


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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-28 Thread VDR User
On Thu, May 28, 2009 at 8:16 AM, Luca Olivetti  wrote:
> En/na VDR User ha escrit:
>> On Thu, May 28, 2009 at 7:50 AM, Josce  wrote:
>>> Reelbox plugin still occasionally freezes, but so it has always done.
>>> The reelbox plugin is of course a joke and I deeply regret buying the
>>> card from Reel-Multimedia. Hopefully the VDPAU is more promising.
>>
>> Sorry for OT but just wanted to note that I and many other users I
>> know are using VDPAU now and it works great.  I believe the devs are
>> preparing to submit a patch to Darren Salt so it may become a part of
>> vanilla xine-lib.  A huge thanks to the devs for their work!
>
> OTOH with my setup it works poorly (artifacts, banding, freezing,
> changes in color, etc.) and I'm not the only one, so I'm not sure vdpau
> support is mature enough for inclusion in xine-lib.

Are you sure you're not experiencing driver problems?  Btw, the vdpau
devs are really good about fixing things if you provide them with a
sample to work with.  A backtrace doesn't hurt either.

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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-28 Thread Luca Olivetti
En/na VDR User ha escrit:
> On Thu, May 28, 2009 at 7:50 AM, Josce  wrote:
>> Reelbox plugin still occasionally freezes, but so it has always done.
>> The reelbox plugin is of course a joke and I deeply regret buying the
>> card from Reel-Multimedia. Hopefully the VDPAU is more promising.
> 
> Sorry for OT but just wanted to note that I and many other users I
> know are using VDPAU now and it works great.  I believe the devs are
> preparing to submit a patch to Darren Salt so it may become a part of
> vanilla xine-lib.  A huge thanks to the devs for their work!

OTOH with my setup it works poorly (artifacts, banding, freezing, 
changes in color, etc.) and I'm not the only one, so I'm not sure vdpau 
support is mature enough for inclusion in xine-lib.

Bye
-- 
Luca


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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-28 Thread VDR User
On Thu, May 28, 2009 at 7:50 AM, Josce  wrote:
> Reelbox plugin still occasionally freezes, but so it has always done.
> The reelbox plugin is of course a joke and I deeply regret buying the
> card from Reel-Multimedia. Hopefully the VDPAU is more promising.

Sorry for OT but just wanted to note that I and many other users I
know are using VDPAU now and it works great.  I believe the devs are
preparing to submit a patch to Darren Salt so it may become a part of
vanilla xine-lib.  A huge thanks to the devs for their work!

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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-28 Thread VDR User
On Thu, May 28, 2009 at 5:09 AM, Falk Spitzberg  wrote:
> Hello,
>
> i recently built a vdr-1.7.6 + reelbox pluging, following the vdr-wiki
> for VDR DVB-S2 on OpenSuse.
>
> Everything was build properly, but unfortunately the eHD freezes after a
> few Minutes (not only when replaying recordings, but also with live TV).
> I know that there are some problems concerning the new TS format of
> VDR.
>
> Does anyone have a solution for this problem? I don't like the idea to
> use VDR 1.7.0 or an even older version.

Sounds like a problem with eHD.  I've been using 1.7.x with mpeg-ts
and have never seen the problems you describe.

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


Re: [vdr] ExtensionHD and VDR 1.7.6

2009-05-28 Thread Josce
Falk Spitzberg wrote:
> Hello,
> 
> i recently built a vdr-1.7.6 + reelbox pluging, following the vdr-wiki
> for VDR DVB-S2 on OpenSuse.
> 
> Everything was build properly, but unfortunately the eHD freezes after a
> few Minutes (not only when replaying recordings, but also with live TV).
> I know that there are some problems concerning the new TS format of
> VDR. 
> 
> Does anyone have a solution for this problem? I don't like the idea to
> use VDR 1.7.0 or an even older version.
> 
> Any help is greatly appreceated.

Hello,

I installed vdr-1.7.6 + reelbox plugin a week ago using:
http://www.vdr-wiki.de/wiki/index.php/OpenSUSE_VDR_DVB-S2#openSUSE_VDR_DVB-S2_-_Teil2.1:_eHD
which propably is the one you are refering to. Then I applied the 
vdr-1.7.6-1.7.7.diff
patch which worked except that I had to change the osd.h file a little for the 
patch
to run without complaints. There is some memory leak problem with vdr-1.7.7 but
Klaus is looking into it, see: 
http://www.linuxtv.org/pipermail/vdr/2009-May/020636.html

Reelbox plugin still occasionally freezes, but so it has always done.
The reelbox plugin is of course a joke and I deeply regret buying the
card from Reel-Multimedia. Hopefully the VDPAU is more promising.

BR,

Josce

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


[vdr] ExtensionHD and VDR 1.7.6

2009-05-28 Thread Falk Spitzberg
Hello,

i recently built a vdr-1.7.6 + reelbox pluging, following the vdr-wiki
for VDR DVB-S2 on OpenSuse.

Everything was build properly, but unfortunately the eHD freezes after a
few Minutes (not only when replaying recordings, but also with live TV).
I know that there are some problems concerning the new TS format of
VDR. 

Does anyone have a solution for this problem? I don't like the idea to
use VDR 1.7.0 or an even older version.

Any help is greatly appreceated.
-- 
Falk Spitzberg
Tel: +49 5242 901626
E-Mail: p...@spitzberg.de


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