Re: [vdr] Replay Problems with Extension HD

2010-10-24 Thread Klaus Schmidinger
On 14.10.2010 13:48, Vesa wrote: I did some testing and debugging. First note is that VDR do not do sanity check for STC on delay loop. Now there is on dvbsubtitle.c if (STC = 0) { It should be if (LimitTo32Bit(STC) = 0) { After this delay loop start to work with reelbox-3 plugin.

Re: [vdr] Replay Problems with Extension HD

2010-10-15 Thread Vesa
From: Hannu Tirkkonen Subject: Re: [vdr] Replay Problems with Extension HD On 14.10.2010 19.17, Vesa wrote: From: Rolf Ahrenberg Would it help to modify the plugin's GetSTC() method only when replaying? + if (Replaying()) +STC -= 50L; // or configurable: 900L

Re: [vdr] Replay Problems with Extension HD

2010-10-15 Thread Hannu Tirkkonen
On 15.10.2010 10.28, Vesa wrote: Unfortunately it is not working.. The Working Fix is this: - return (stc == 0) ? -1LL : stc; + if (Transferring()){ + stc -= 9L; + } + else { + stc -= 52L; + } + return (stc == 0) ? -1LL : (stc 0x); Replaying returns always true,

Re: [vdr] Replay Problems with Extension HD

2010-10-15 Thread Vesa
From: Hannu Tirkkonen Sent: Friday, 15 October, 2010 11:18 To: VDR Mailing List Subject: Re: [vdr] Replay Problems with Extension HD Is it still required to modify also the dvbsubtitle.c? No. btw; Your previous patch reelbox-svn15208-vdr.bin for reelbox svn 15208 didn't apply clean

Re: [vdr] Replay Problems with Extension HD

2010-10-14 Thread crow
On Wed, Oct 13, 2010 at 11:43 PM, Klaus Schmidinger klaus.schmidin...@tvdr.de wrote: On 13.10.2010 20:55, Rolf Ahrenberg wrote: On Wed, 13 Oct 2010, Vesa wrote: Similar delay as on ttxsubtitles would be nice addition to VDR. Separate and additional delay for live and record play modes.

Re: [vdr] Replay Problems with Extension HD

2010-10-14 Thread Rolf Ahrenberg
On Thu, 14 Oct 2010, Vesa wrote: Next step is to add delay for subtitles. This is dirty trick, it is only for eHD users. Simply add some value to Delta (add second line): Code: Delta = LimitTo32Bit(sb-Pts()) - LimitTo32Bit(STC); Delta += 50; With that 5 you will get 5.56s

Re: [vdr] Replay Problems with Extension HD

2010-10-14 Thread Georg Acher
On Thu, Oct 14, 2010 at 02:48:51PM +0300, Vesa wrote: The root cause is still there, somehow eHD delivers around 50 too low STC for recording play. For live shows STC value is correct.. I'll need to have a closer look, but it sounds possible, that the pts is the pts of the last packet put

Re: [vdr] Replay Problems with Extension HD

2010-10-14 Thread Vesa
From: Rolf Ahrenberg Would it help to modify the plugin's GetSTC() method only when replaying? + if (Replaying()) +STC -= 50L; // or configurable: 900L * ReelSetup.STCDelayMs; Yes, that works. Complete fix for ReelBoxDevice.c around line 996: - return (stc == 0) ? -1LL : stc;

Re: [vdr] Replay Problems with Extension HD

2010-10-14 Thread Hannu Tirkkonen
On 14.10.2010 14.48, Vesa wrote: I did some testing and debugging. First note is that VDR do not do sanity check for STC on delay loop. Now there is on dvbsubtitle.c if (STC= 0) { It should be if (LimitTo32Bit(STC)= 0) { After this delay loop start to work with reelbox-3 plugin. With out

Re: [vdr] Replay Problems with Extension HD

2010-10-14 Thread Hannu Tirkkonen
On 14.10.2010 19.17, Vesa wrote: From: Rolf Ahrenberg Would it help to modify the plugin's GetSTC() method only when replaying? + if (Replaying()) +STC -= 50L; // or configurable: 900L * ReelSetup.STCDelayMs; Yes, that works. Complete fix for ReelBoxDevice.c around line 996: -

Re: [vdr] Replay Problems with Extension HD

2010-10-14 Thread Hannu Tirkkonen
On 14.10.2010 19.17, Vesa wrote: From: Rolf Ahrenberg Would it help to modify the plugin's GetSTC() method only when replaying? + if (Replaying()) +STC -= 50L; // or configurable: 900L * ReelSetup.STCDelayMs; Yes, that works. Complete fix for ReelBoxDevice.c around line 996: -

Re: [vdr] Replay Problems with Extension HD

2010-10-13 Thread VDR User
On Wed, Oct 13, 2010 at 12:51 AM, Vesa ves...@nic.fi wrote: VDPAU with Xine looks promising, but it is still unstable. Yep, I know that issue is mostly on Nvidia driver side. It works great here and I think for most users. It seems only a small group has problems. Maybe the problem is with

Re: [vdr] Replay Problems with Extension HD

2010-10-13 Thread Steffen Barszus
I agree partially, for normal use its really ok allready. There are things which could be improved and not all problems are related to NVidia, but also to the state of the frontend plugins (namely xine and xineliboutput). So unstable is a littlebit to hard, stable doesnt fit either. 2010/10/13

Re: [vdr] Replay Problems with Extension HD

2010-10-13 Thread Rolf Ahrenberg
On Wed, 13 Oct 2010, Vesa wrote: Similar delay as on ttxsubtitles would be nice addition to VDR. Separate and additional delay for live and record play modes. Suitable range would be 0 - 10s. Well, IMO that delay code in the ttxtsubs plugin should be removed when PTS code has been merged

Re: [vdr] Replay Problems with Extension HD

2010-10-13 Thread Klaus Schmidinger
On 13.10.2010 20:55, Rolf Ahrenberg wrote: On Wed, 13 Oct 2010, Vesa wrote: Similar delay as on ttxsubtitles would be nice addition to VDR. Separate and additional delay for live and record play modes. Suitable range would be 0 - 10s. Well, IMO that delay code in the ttxtsubs plugin

Re: [vdr] Replay Problems with Extension HD

2010-10-13 Thread Vesa
From: Klaus Schmidinger Sent: Thursday, 14 October, 2010 00:43 If there's something actually wrong with VDR's DVB subtitle code, it should be fixed in VDR. I don't see why we would need a plugin interface here. An output device needs to provide a proper STC in order to sync subtitles.

Re: [vdr] Replay Problems with Extension HD

2010-10-12 Thread Hannu Tirkkonen
On 11.10.2010 22.22, Vesa wrote: eHD card has now days working plugin for vdr, more info about that here: http://www.vdr-portal.de/board/thread.php?threadid=98019 eHD is stable with latest card firmwares, also for ts playback. Only issue is still that somehow VDR is not compatible with eHD on

Re: [vdr] Replay Problems with Extension HD

2010-10-12 Thread Luca Olivetti
Al 12/10/10 18:13, En/na Hannu Tirkkonen ha escrit: On 11.10.2010 22.22, Vesa wrote: eHD card has now days working plugin for vdr, more info about that here: http://www.vdr-portal.de/board/thread.php?threadid=98019 eHD is stable with latest card firmwares, also for ts playback. Only issue is

Re: [vdr] Replay Problems with Extension HD

2010-10-12 Thread Lars Bläser
On 11.10.2010 21:22, Vesa wrote: eHD card has now days working plugin for vdr, more info about that here: http://www.vdr-portal.de/board/thread.php?threadid=98019 eHD is stable with latest card firmwares, also for ts playback. Only issue is still that somehow VDR is not compatible with eHD

Re: [vdr] Replay Problems with Extension HD

2009-11-17 Thread Falk Spitzberg
Hi Klaus (and others) the replay problem is probably fixed. It was located in the hdplayer program that runs on the eHD. The fixed version should be available soon. Thanks to the guy who is known as reel_schorsch on the VDR-Portal. Falk Am Montag, den 07.09.2009, 19:25 +0200 schrieb Klaus

Re: [vdr] Replay Problems with Extension HD

2009-10-01 Thread Theunis Potgieter
On 05/09/2009, VDR User user@gmail.com wrote: I'm not sure why you think vdpau is stupid if you want an HD stb. Using vdpau gives you the ability to have HD on systems that normally wouldn't have a chance at all, and it provides this at a very lost cost. The cheapest I've paid so far

Re: [vdr] Replay Problems with Extension HD

2009-10-01 Thread VDR User
On Thu, Oct 1, 2009 at 9:03 AM, Theunis Potgieter theunis.potgie...@gmail.com wrote: Which gentoo overlay are you using for vdpau enabled xine-lib? I assume you need xine-lib-1.2 and vdr-xine or vdr-xineliboutput with vdpau enabled? Which driver version of nvidia do you require and which

Re: [vdr] Replay Problems with Extension HD

2009-09-09 Thread jori.hamalainen
Didn't realize that there was such a database of users available. I'm pretty sure that _many_ of the VDR users are not aware of this thus statistics are probably not very accurate. Klaus should advertise this once in a while ;-) Perhaps VDR should try to send UDP packet to Klaus's server

Re: [vdr] Replay Problems with Extension HD

2009-09-08 Thread Arthur Konovalov
Klaus Schmidinger wrote: I first have to debug the fast forwarding in SF2 recordings problem. Not only SF2 (if You meant Schweizer Fernsehen). I discovered that with recordings from local cable operator fast forwarding not working too. Old 1.6.0's .vdr recordings are fine with 1.7.9. Output

Re: [vdr] Replay Problems with Extension HD

2009-09-08 Thread Timothy D. Lenz
@linuxtv.org Sent: Monday, September 07, 2009 11:46 AM Subject: Re: [vdr] Replay Problems with Extension HD VDR User wrote: On Mon, Sep 7, 2009 at 9:14 AM, Petri Helinphe...@googlemail.com wrote: On Mon, Sep 7, 2009 at 6:57 PM, VDR Useruser@gmail.com wrote: Perhaps you meant the great non-german

Re: [vdr] Replay Problems with Extension HD

2009-09-08 Thread Pasi Juppo
Petri Helin wrote: On Mon, Sep 7, 2009 at 6:57 PM, VDR Useruser@gmail.com wrote: I'd suggest posting to the mailing list or both as VDR Portal caters 99% to people who speak german and isn't much help for the very large english-speaking-only VDR community. I wouldn't say the

Re: [vdr] Replay Problems with Extension HD

2009-09-08 Thread Pasi Kärkkäinen
On Tue, Sep 08, 2009 at 09:17:30PM +0300, Pasi Juppo wrote: Petri Helin wrote: On Mon, Sep 7, 2009 at 6:57 PM, VDR Useruser@gmail.com wrote: I'd suggest posting to the mailing list or both as VDR Portal caters 99% to people who speak german and isn't much help for the very large

Re: [vdr] Replay Problems with Extension HD

2009-09-08 Thread VDR User
It's the exact same situation for North American users as well. You guys grossly underestimate our numbers since you're not members of that particular community. Klaus advertising his list of users, or the mailing list, or forums that are primarily non-english won't do much in terms of getting

Re: [vdr] Replay Problems with Extension HD

2009-09-07 Thread Falk Spitzberg
Am Samstag, den 05.09.2009, 15:09 +0200 schrieb Klaus Schmidinger: On 03.09.2009 12:10, Falk Spitzberg wrote: Am Mittwoch, den 02.09.2009, 08:49 -0700 schrieb VDR User: Sounds like your question is more appropriate for the vendors customer support of that product. Definitly not,

Re: [vdr] Replay Problems with Extension HD

2009-09-07 Thread Günter Greschenz
Maybe it's ok if I use this opportunity to ask if somebody could point me to a complete idiot's guide to installing the eHD software I've sent some stuff with private mail. Should help you to bring it up within a few minutes. hi, could you send it to me also ? i'm very interested in

Re: [vdr] Replay Problems with Extension HD

2009-09-07 Thread Antti Hartikainen
On Mon, Sep 07, 2009 at 02:24:48PM +0200, Günter Greschenz wrote: Maybe it's ok if I use this opportunity to ask if somebody could point me to a complete idiot's guide to installing the eHD software I've sent some stuff with private mail. Should help you to bring it up within a few

Re: [vdr] Replay Problems with Extension HD

2009-09-07 Thread VDR User
On Mon, Sep 7, 2009 at 5:41 AM, Falk Spitzbergp...@spitzberg.de wrote: I'm also interested to see this information. Wouldn't it be good idea to publish it on the list, it would be more useful for the people who are looking for the information =) Let me see if it works for Klaus. Once he has

Re: [vdr] Replay Problems with Extension HD

2009-09-07 Thread Petri Helin
On Mon, Sep 7, 2009 at 6:57 PM, VDR Useruser@gmail.com wrote: I'd suggest posting to the mailing list or both as VDR Portal caters 99% to people who speak german and isn't much help for the very large english-speaking-only VDR community. I wouldn't say the english-speaking-only VD

Re: [vdr] Replay Problems with Extension HD

2009-09-07 Thread Timothy D. Lenz
...@googlemail.com To: VDR Mailing List vdr@linuxtv.org Sent: Monday, September 07, 2009 9:14 AM Subject: Re: [vdr] Replay Problems with Extension HD On Mon, Sep 7, 2009 at 6:57 PM, VDR Useruser@gmail.com wrote: I'd suggest posting to the mailing list or both as VDR Portal caters 99% to people

Re: [vdr] Replay Problems with Extension HD

2009-09-07 Thread Klaus Schmidinger
On 07.09.2009 14:41, Falk Spitzberg wrote: Am Montag, den 07.09.2009, 15:29 +0300 schrieb Antti Hartikainen: On Mon, Sep 07, 2009 at 02:24:48PM +0200, Günter Greschenz wrote: Maybe it's ok if I use this opportunity to ask if somebody could point me to a complete idiot's guide to installing the

Re: [vdr] Replay Problems with Extension HD

2009-09-07 Thread VDR User
On Mon, Sep 7, 2009 at 9:14 AM, Petri Helinphe...@googlemail.com wrote: On Mon, Sep 7, 2009 at 6:57 PM, VDR Useruser@gmail.com wrote: I'd suggest posting to the mailing list or both as VDR Portal caters 99% to people who speak german and isn't much help for the very large

Re: [vdr] Replay Problems with Extension HD

2009-09-07 Thread Petri Helin
VDR User wrote: On Mon, Sep 7, 2009 at 9:14 AM, Petri Helinphe...@googlemail.com wrote: On Mon, Sep 7, 2009 at 6:57 PM, VDR Useruser@gmail.com wrote: Perhaps you meant the great non-german-speaking community, who communicate in English? ;) Nope, I mean english-speaking-only. Like the

Re: [vdr] Replay Problems with Extension HD

2009-09-06 Thread Lauri Tischler
Gavin Hamill wrote: On Sat, 2009-09-05 at 08:18 -0700, VDR User wrote: On Sat, Sep 5, 2009 at 6:24 AM, Lauri Tischlerl...@iki.fi wrote: Somewhat related question is, is there some solution to have HD-VDR without X, other than eHD ? Not that I'm aware of but by no means have I researched that

Re: [vdr] Replay Problems with Extension HD

2009-09-05 Thread Klaus Schmidinger
On 03.09.2009 12:10, Falk Spitzberg wrote: Am Mittwoch, den 02.09.2009, 08:49 -0700 schrieb VDR User: Sounds like your question is more appropriate for the vendors customer support of that product. Definitly not, because my question ist only about the VDR core. I am just trying to find out

Re: [vdr] Replay Problems with Extension HD

2009-09-05 Thread Lauri Tischler
Klaus Schmidinger wrote: Maybe it's ok if I use this opportunity to ask if somebody could point me to a complete idiot's guide to installing the eHD software (meaning the necessary software that goes into the eHD itself, as well as the latest version of their plugin). I know, I could search for

Re: [vdr] Replay Problems with Extension HD

2009-09-05 Thread VDR User
On Sat, Sep 5, 2009 at 6:24 AM, Lauri Tischlerl...@iki.fi wrote: Somewhat related question is, is there some solution to have HD-VDR without X, other than eHD ? Not that I'm aware of but by no means have I researched that question in depth. ;) All this hullaballoo with vdpau/X/xine etc.. is

Re: [vdr] Replay Problems with Extension HD

2009-09-05 Thread Gavin Hamill
On Sat, 2009-09-05 at 08:18 -0700, VDR User wrote: On Sat, Sep 5, 2009 at 6:24 AM, Lauri Tischlerl...@iki.fi wrote: Somewhat related question is, is there some solution to have HD-VDR without X, other than eHD ? Not that I'm aware of but by no means have I researched that question in

Re: [vdr] Replay Problems with Extension HD

2009-09-05 Thread VDR User
On Sat, Sep 5, 2009 at 8:26 AM, Gavin Hamillg...@acentral.co.uk wrote: I'm not sure why you think vdpau is stupid if you want an HD stb. Using vdpau gives you the ability to have HD on systems that normally wouldn't have a chance at all, and it provides this at a very lost cost.  The cheapest

Re: [vdr] Replay Problems with Extension HD

2009-09-05 Thread Niels Wagenaar
Op Za, 5 september, 2009 18:11, schreef VDR User: -- SNIP -- It sounds like the eHD is the most expensive solution in all areas; time, money, patching, etc. Whereas, vdpau seems to be at the other end of the spectrum being the least expensive, easiest, and so on. Depends on how you look at

Re: [vdr] Replay Problems with Extension HD

2009-09-04 Thread Falk Spitzberg
Am Donnerstag, den 03.09.2009, 07:57 -0700 schrieb VDR User: On Thu, Sep 3, 2009 at 3:10 AM, Falk Spitzbergp...@spitzberg.de wrote: Am Mittwoch, den 02.09.2009, 08:49 -0700 schrieb VDR User: Sounds like your question is more appropriate for the vendors customer support of that product.

Re: [vdr] Replay Problems with Extension HD

2009-09-04 Thread VDR User
On Thu, Sep 3, 2009 at 11:55 PM, Falk Spitzbergp...@spitzberg.de wrote: I don't know. But what is wrong about my attempt to find out what VDR does different during replay vs. live TV. I did never say that VDR does something wrong. I just asked a question. Too bad that nobody can answer it.

Re: [vdr] Replay Problems with Extension HD

2009-09-04 Thread Niels Wagenaar
Op Vr, 4 september, 2009 19:39, schreef VDR User: All I'm saying is you seem to have a hardware problem that should be addressed @ the vendors customer service/product support. Have you even bothered to contact them? Maybe there's already a fix/solution waiting for you there. IMHO, that's

Re: [vdr] Replay Problems with Extension HD

2009-09-03 Thread Falk Spitzberg
Am Mittwoch, den 02.09.2009, 08:49 -0700 schrieb VDR User: Sounds like your question is more appropriate for the vendors customer support of that product. Definitly not, because my question ist only about the VDR core. I am just trying to find out what VDR does different when it transfers data

Re: [vdr] Replay Problems with Extension HD

2009-09-03 Thread VDR User
On Thu, Sep 3, 2009 at 3:10 AM, Falk Spitzbergp...@spitzberg.de wrote: Am Mittwoch, den 02.09.2009, 08:49 -0700 schrieb VDR User: Sounds like your question is more appropriate for the vendors customer support of that product. Definitly not, because my question ist only about the VDR core. I

Re: [vdr] Replay Problems with Extension HD

2009-09-02 Thread Falk Spitzberg
Does really nobody have an idea ?? Am Donnerstag, den 27.08.2009, 11:46 +0200 schrieb Falk Spitzberg: Hello, Users of the Reel Extension HD card will know that there are Problems when TS recordings are replayed. These Problems seem to be limited to some stations like Pro7 and even with

Re: [vdr] Replay Problems with Extension HD

2009-09-02 Thread VDR User
Sounds like your question is more appropriate for the vendors customer support of that product. ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr