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

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

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, Transf

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? > &g

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: - retur

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: - retur

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 th

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

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 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 de

Re: [vdr] Replay Problems with Extension HD

2010-10-14 Thread Vesa
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 that STC int64_t value includes gar

Re: [vdr] Replay Problems with Extension HD

2010-10-14 Thread crow
On Wed, Oct 13, 2010 at 11:43 PM, Klaus Schmidinger 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. Suitable range wo

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 > su

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 ttxtsu

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 into

[vdr] Replay Problems with Extension HD

2010-10-13 Thread Vesa
Al 12/10/10 18:13, Hannu Tirkkonen: > Hi! > > This is really annoying problem and basically all of the recordings > containing dvb subtitles are pretty much useless. The problem exists > also on recordings having teletext subtitling, but the teletext plugin > have an option for delaying the subtitl

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 VD

Re: [vdr] Replay Problems with Extension HD

2010-10-13 Thread VDR User
On Wed, Oct 13, 2010 at 12:51 AM, Vesa 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 certain hardwa

Re: [vdr] Replay Problems with Extension HD

2010-10-13 Thread Stuart Morris
Could the new TechnoTrend Premium 6400 be the answer? www.dvbshop.net --- On Wed, 13/10/10, Vesa wrote: > From: Vesa > Subject: Re: [vdr] Replay Problems with Extension HD > To: "'VDR Mailing List'" > Date: Wednesday, 13 October, 2010, 8:51 > > From: La

Re: [vdr] Replay Problems with Extension HD

2010-10-13 Thread Vesa
> From: Lars Bläser > > On 11.10.2010 21:22, Vesa wrote: > >Only issue > > is still that somehow VDR is not compatible with eHD on replay mode. > > With > > live tv DVB subtile timing is correct. During replay subtitles still > > comes > > 6-7s too early here in Finland. > > > > the developer of

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 wit

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 s

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 r

[vdr] Replay Problems with Extension HD

2010-10-11 Thread Vesa
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 replay mode. With live tv DVB subtil

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 Schmid

Re: [vdr] Replay Problems with Extension HD

2009-10-01 Thread VDR User
On Thu, Oct 1, 2009 at 9:03 AM, Theunis Potgieter 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 > version of Xorg and xcb? I u

Re: [vdr] Replay Problems with Extension HD

2009-10-01 Thread Theunis Potgieter
On 05/09/2009, VDR User 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 is $20 ($30-$

Re: [vdr] Replay Problems with Extension HD

2009-09-08 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 serve

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 pe

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 User 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 > >> engli

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 User 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 englis

Re: [vdr] Replay Problems with Extension HD

2009-09-08 Thread Timothy D. Lenz
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 Helin wrote: > >> On Mon, Sep 7, 2009 at 6:57 PM, VDR User wrote: > >> Perhaps you meant the great non-german-spea

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. Outpu

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 Helin wrote: On Mon, Sep 7, 2009 at 6:57 PM, VDR User wrote: Perhaps you meant the great non-german-speaking community, who communicate in English? ;) Nope, I mean english-speaking-only. Like the other user pointed out, many many people ar

Re: [vdr] Replay Problems with Extension HD

2009-09-07 Thread VDR User
On Mon, Sep 7, 2009 at 9:14 AM, Petri Helin wrote: > On Mon, Sep 7, 2009 at 6:57 PM, VDR User 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 w

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 i

Re: [vdr] Replay Problems with Extension HD

2009-09-07 Thread Timothy D. Lenz
uot;Petri Helin" To: "VDR Mailing List" 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 User wrote: > > > > I'd suggest posting to the mailing list or both as VDR Portal caters >

Re: [vdr] Replay Problems with Extension HD

2009-09-07 Thread Petri Helin
On Mon, Sep 7, 2009 at 6:57 PM, VDR User 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 community is that la

Re: [vdr] Replay Problems with Extension HD

2009-09-07 Thread VDR User
On Mon, Sep 7, 2009 at 5:41 AM, Falk Spitzberg 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 his eHD ru

Re: [vdr] Replay Problems with Extension HD

2009-09-07 Thread Falk Spitzberg
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 eHD software" > > > > > > >

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 > >wi

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 t

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

Re: [vdr] Replay Problems with Extension HD

2009-09-06 Thread Seppo Ingalsuo
On Sun, 2009-09-06 at 13:21 +0300, Lauri Tischler wrote: > I should have said 'needing X to run HD-VDR is stupid".. > I sure wish there was a NEXUS-FF-S2 card with HDMI 1080p output, > or similar, I dont like X and GUIs in general. > In old Byte Magazine guy named Steve Ciarcia said "the best comp

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 Tischler 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 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

Re: [vdr] Replay Problems with Extension HD

2009-09-05 Thread VDR User
On Sat, Sep 5, 2009 at 8:26 AM, Gavin Hamill 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

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 Tischler 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. ;

Re: [vdr] Replay Problems with Extension HD

2009-09-05 Thread VDR User
On Sat, Sep 5, 2009 at 6:24 AM, Lauri Tischler 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 somehow st

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 fo

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 fi

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, tha

Re: [vdr] Replay Problems with Extension HD

2009-09-04 Thread VDR User
On Thu, Sep 3, 2009 at 11:55 PM, Falk Spitzberg 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. All I'm sayi

Re: [vdr] Replay Problems with Extension HD

2009-09-03 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 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. > > > > Defin

Re: [vdr] Replay Problems with Extension HD

2009-09-03 Thread VDR User
On Thu, Sep 3, 2009 at 3:10 AM, 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 tr

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-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

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

[vdr] Replay Problems with Extension HD

2009-08-27 Thread 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 these stations to movies that are broadcastest with DD 5.1 audio. Now my question: What is different between Liv