Re: [vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2009-01-02 Thread Mika Laitio

Hmm, the differences in my and your setup are
1) I have also hvr-1300 in my system (for dvb-t)
2) I modified the vdr sources instead of modifying the driver for
informing the system from the S2 capabilities (klaus explained also that
method in his 1.7.2 announcements). I can re-test this in another way once
the 2G_CAP patch is applied to v4l-dvb repository.


I applied Klaus latest patch to v4l-dvb source and changed
FE_CAN_2ND_GEN_MODULATION to FE_CAN_2G_MODULATION in dvbdevice.c.

Do you have MFE's version of v4l-dvb aswell ?


Yes, I have. I am actually now using 2 day old version from
http://linuxtv.org/hg/v4l-dvb which includes the FE_CAN_2G_MODULATION 
flag support in driver.


And now I am finally able to watch the
HD content with my vdr 1.7.2 and streamdev server plugin by using mplayer 
or vlc as a client with HVR-4000.


BUT there is somewhere bug in the vdr channel tuning because it seems that
if I want to watch dvb-s or dvb-s2 channels, I must first tune to correct 
channel with vdr-1.6.0 or with szap-s2...


I tried to put step by step guide/notes how I got VDR172/h264 KIND of 
working... Maybe you could get it working in similar way...


1) Build and install latest v4l-dvb drivers
2) Checkout s2-szap from http://mercurial.intuxication.org/hg/szap-s2
  (I am using couple of weeks old version), and change INCLUDE line in
  Makefile to point your v4l-dvb driver sources. I have for example
INCLUDE=-I/home/lamikr/dvb/drivers/20081231/v4l-dvb/linux/include
  Then build it.
3) Add hd channel info to szap2 channels.conf With astra-28.2E I can 
use following with szap2channels.conf

arteHD:11361:hC23M5O35S1:S19.2E:22000:6210:6230:0:11120:1:1011:0
4) Test whether tuning works with szap2, I use

[lam...@tinka szap-s2]$ ./szap-s2 -a 1 -S 2 -c szap2channels.conf arteHD
ERROR: invalid value for parameter ''
reading channels from file 'szap2channels.conf'
zapping to 1 'arteHD':
delivery DVB-S2, modulation 8PSK
sat 0, frequency 11361 MHz H, symbolrate 2200, coderate 2/3, rolloff 
0.35

vpid 0x1842, apid 0x1856, sid 0x
using '/dev/dvb/adapter1/frontend0' and '/dev/dvb/adapter1/demux0'
status 1f | signal d000 | snr  | ber  | unc  | 
FE_HAS_LOCK
status 1f | signal c2c0 | snr 8b33 | ber  | unc  | 
FE_HAS_LOCK


(I could then try to record and watch from command line by using commands:
# dvbstream -c 1 8192 -o  test3.mpg
# vlc test3.mpg
)

4) Extract vdr-1.7.2 (I have cloned from unofficial vdr git repo)

5) Apply attached 2G modulation support patch for vdr-1.7.2 (due to flag 
name change in official V4L-DVB drivers)

patch -p1  ../vdr172_v4ldvb_2g_modulation_support.patch

6) Apply h264 support patch for vdr-1.7.2 that has been earlier send to 
mailing list:
patch -p1  
../vdr-1.7.2-h264-syncearly-framespersec-audioindexer-fielddetection-speedup.diff


7) download and configure latest dvbstreamdev plugin from cvs
- update plugins/streamdev/streamdevhosts.conf
- update svdrphosts.conf
- update runvdr
(VDRCMD=$VDRPRG --lirc -w 15 -c 
/home/lamikr/dvb/vdr/vdr-git -Pstreamdev-server)


8) Include arteHD info to top of the vdr channels.conf
arte;ARD:10743:hC56M5O0S0:S19.2E:22000:401=2:402=deu,403=fra:404:0:28724:1:1051:0
arte 
HD;ZDFvision:11361:hC23M16O35S1:S19.2E:22000:6210=27:6221=deu,6222=fra:6230:0:11120:1:1011:0


9) Make sure you have tuned to arteHD with szap-s2 and then closed szap 
(see step 4)


10) launch vdr 1.7.2 with runvdr

11) watch arteHD with
vlc http://localhost:3000/TS/2

If I now would like to watch arte instead, I would need to close vdr, 
szap first from command line and then re-launch vdr...


Btw... I now really envy the vdpay/nvidia cpu usage as with 780G 
motherboard I have...


Tasks: 174 total,   3 running, 171 sleeping,   0 stopped,   0 zombie
Cpu(s): 55.4%us,  3.5%sy,  0.5%ni, 40.5%id,  0.0%wa,  0.0%hi,  0.2%si, 
0.0%st

Mem:   1799896k total,  1779300k used,20596k free,   272416k buffers
Swap:  8185076k total,  176k used,  8184900k free,   728196k cached

  PID USER  PR  NI  VIRT  RES  SHR S %CPU %MEMTIME+  COMMAND
 8866 lamikr20   0  598m  57m  20m S  108  3.2   0:23.90 vlc
 8854 root  20   0  214m  24m 4460 S2  1.4   0:01.12 vdr
 5200 lamikr 9 -11  224m 5776 3848 S2  0.3   1:31.79 pulseaudio

diff --git a/dvbdevice.c b/dvbdevice.c
index e0b05a1..08dc63f 100644
--- a/dvbdevice.c
+++ b/dvbdevice.c
@@ -32,7 +32,7 @@
 // unpatched driver. However, with an unpatched driver it will not support
 // DVB-S2 hardware. If you have DVB-S2 hardware you need to either patch
 // the driver or modify the line that uses this macro in 
cDvbDevice::cDvbDevice().
-#define FE_CAN_2ND_GEN_MODULATION 0x1000
+#define FE_CAN_2G_MODULATION 0x1000
 
 #define DO_REC_AND_PLAY_ON_PRIMARY_DEVICE 1
 #define DO_MULTIPLE_RECORDINGS 1
@@ -491,7 +491,7 @@ cDvbDevice::cDvbDevice(int n)
   if (fd_frontend = 0) {
  if (ioctl(fd_frontend, FE_GET_INFO, frontendInfo) = 0) {
 switch (frontendInfo.type) {
-  case 

Re: [vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2009-01-02 Thread Reinhard Nissl
Hi,

Mika Laitio schrieb:

 BUT there is somewhere bug in the vdr channel tuning because it seems that
 if I want to watch dvb-s or dvb-s2 channels, I must first tune to
 correct channel with vdr-1.6.0 or with szap-s2...

I do not see such a behavior with stb0899 based TT-3200 here.
Arte and ArteHD work out of the box with VDR-1.7.2 using this
repository:

http://mercurial.intuxication.org/hg/s2-liplianin

Sure, had to add 2g flag in stb0899 source though. Before using
this repository it was hardly possible to tune to ArteHD.

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] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2009-01-02 Thread Artem Makhutov
Hi,

On Fri, Jan 02, 2009 at 08:19:11PM +0100, Reinhard Nissl wrote:
 Hi,
 
 Mika Laitio schrieb:
 
  BUT there is somewhere bug in the vdr channel tuning because it seems that
  if I want to watch dvb-s or dvb-s2 channels, I must first tune to
  correct channel with vdr-1.6.0 or with szap-s2...
 
 I do not see such a behavior with stb0899 based TT-3200 here.
 Arte and ArteHD work out of the box with VDR-1.7.2 using this
 repository:
 
   http://mercurial.intuxication.org/hg/s2-liplianin
 
 Sure, had to add 2g flag in stb0899 source though. Before using
 this repository it was hardly possible to tune to ArteHD.

I tried vdr 1.7.2 a few days ago with drivers from s2-liplianin and my stb0899 
card.
I was not able to tune to any channels, but I have patched vdr with this 
patches:
h264, livebuffer, sourcecaps. So I am not sure what was causing the problem, 
maybe it
was one of the patches. I will try out vdr 1.7.2 without any patches tomorrow.

Regards, Artem

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


Re: [vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2009-01-02 Thread Gregoire Favre
On Fri, Jan 02, 2009 at 05:37:55PM +0200, Mika Laitio wrote:

 BUT there is somewhere bug in the vdr channel tuning because it seems that
 if I want to watch dvb-s or dvb-s2 channels, I must first tune to correct 
 channel with vdr-1.6.0 or with szap-s2...

I give up... thank for your answer.
-- 
Grégoire FAVRE http://gregoire.favre.googlepages.com http://www.gnupg.org
   http://picasaweb.google.com/Gregoire.Favre

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


Re: [vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2009-01-02 Thread Morfsta
On Fri, Jan 2, 2009 at 8:53 PM, Gregoire Favre gregoire.fa...@gmail.com wrote:

 I give up... thank for your answer.

I am still using multiproto here ... it works. :-)

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


Re: [vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2009-01-02 Thread Mika Laitio
 BUT there is somewhere bug in the vdr channel tuning because it seems that
 if I want to watch dvb-s or dvb-s2 channels, I must first tune to correct
 channel with vdr-1.6.0 or with szap-s2...

 I give up... thank for your answer.

Well, in reality my family also still use vdr-1.6.0 for real (tm) tv 
watching as xine-sfxe client is much handier for my child to use 
than launching mplayer/vlc with correct channel url from the console.

But hopefully the h264 acceleration support in radeonhd drivers as well 
as the xineliboutput support for vdr-1.7.x is not far away anymore.

Mika

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


Re: [vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2009-01-02 Thread Reinhard Nissl
Hi,

Mika Laitio schrieb:

 Could you send for verification how you have defined arteHD data in vdr 
 channels.conf? (Just to verify that I do not have there any mistakes)
 I have it in following way:
 arte 
 HD;ZDFvision:11361:hC23M16O35S1:S19.2E:22000:6210=27:6221=deu,6222=fra:6230:0:11120:1:1011:0

arte
HD;ZDFvision:11361:hC23M16O35S1:S19.2E:22000:6210=27:6221=deu,6222=fra:6230:0:11120:1:1011:0

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] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2009-01-02 Thread Mika Laitio
 I do not see such a behavior with stb0899 based TT-3200 here.
 Arte and ArteHD work out of the box with VDR-1.7.2 using this
 repository:

  http://mercurial.intuxication.org/hg/s2-liplianin

 Sure, had to add 2g flag in stb0899 source though. Before using
 this repository it was hardly possible to tune to ArteHD.

 Ok, so one would need to find out what are the real S2API tuning specific
 code in vdr h264 extension patches so that I could find out why vdr fails
 to tune with hvr-4000. Or actually maybe the correct answer is to
 understand what is the difference between those two S2-API drivers.

Ok, I made more tests.
1) s2-liplianin drivers.
  - checked out
  - applied S2 capability patches from v4l-dvb drivers to s2-liplianin
http://www.linuxtv.org/hg/v4l-dvb/rev/0f6097dd419c
http://www.linuxtv.org/hg/v4l-dvb/rev/3e5f56413191
  - compiler and rebooted computer
2) rebuild vdr and streamdev plugin
  - make clean in vdr-git and vdr-git/PLUGINS/src/streamdev directories
  - changed driver path in vdr-git/Make.config
DVBDIR   = /home/lamikr/dvb/drivers/20090103/s2-liplianin/linux
  - copied compiler.h from kernel sources to 
/home/lamikr/dvb/drivers/20090103/s2-liplianin/linux/include/linux/
  - make  make plugins
  - launched vdr

-- mplayer and vlc were still unable to show arte or arteHD channels 
until I used szap/szap-s2 first

I am using 64 bit version of Linux in AMD/780G system...

Mika

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


Re: [vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2008-12-31 Thread Mika Laitio
 unfortunately, it also don't tune to DVB-S channels (I have applied
 Klaus patch to the v4l-dvb sources).

Hi

Does hvr-4000 tune for you to dvb-s channels if you do not apply the h264 
patch? That's the case for me. I send previously an email from similar 
experiences to

http://www.mail-archive.com/vdr@linuxtv.org/msg08635.html

Mika

 Thanks.

 it took me some time to find out that my HVR-4000 don't work for
 DVB-S(2) with vdr-1.7.2.

 Looks like you have to add the 2nd generation flag to your
 driver. Otherwise, vdr-1.7.2 doesn't assume that your card can do
 DVB-S2. For stb0899 it looks like this:



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


Re: [vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2008-12-31 Thread Gregoire Favre
On Wed, Dec 31, 2008 at 03:21:50PM +0200, Mika Laitio wrote:

Hello,

 Does hvr-4000 tune for you to dvb-s channels if you do not apply the h264 
 patch? That's the case for me. I send previously an email from similar 
 experiences to
 
 http://www.mail-archive.com/vdr@linuxtv.org/msg08635.html

Unfortunately I can't tune either without the h264 patch.
-- 
Grégoire FAVRE http://gregoire.favre.googlepages.com http://www.gnupg.org
   http://picasaweb.google.com/Gregoire.Favre

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


Re: [vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2008-12-31 Thread Mika Laitio
 Does hvr-4000 tune for you to dvb-s channels if you do not apply the h264
 patch? That's the case for me. I send previously an email from similar
 experiences to

 http://www.mail-archive.com/vdr@linuxtv.org/msg08635.html

 Unfortunately I can't tune either without the h264 patch.

Hmm, the differences in my and your setup are
1) I have also hvr-1300 in my system (for dvb-t)
2) I modified the vdr sources instead of modifying the driver for 
informing the system from the S2 capabilities (klaus explained also that 
method in his 1.7.2 announcements). I can re-test this in another way once 
the 2G_CAP patch is applied to v4l-dvb repository.

Mika

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


Re: [vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2008-12-31 Thread user . vdr
On Wed, Dec 31, 2008 at 7:40 AM, Gregoire Favre
gregoire.fa...@gmail.com wrote:
 On Wed, Dec 31, 2008 at 03:21:50PM +0200, Mika Laitio wrote:

 Hello,

 Does hvr-4000 tune for you to dvb-s channels if you do not apply the h264
 patch? That's the case for me. I send previously an email from similar
 experiences to

 http://www.mail-archive.com/vdr@linuxtv.org/msg08635.html

 Unfortunately I can't tune either without the h264 patch.

The good news then is that Reinhard Nissl has updated the h264 patch
for vdr-1.7.2!  You can find it in the thread with the title
[ANNOUNCE] H.264 support for VDR-1.7.2.

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


Re: [vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2008-12-31 Thread Gregoire Favre
On Wed, Dec 31, 2008 at 05:50:36PM +0200, Mika Laitio wrote:

Hello,

I have also two other DVB-S cards in my system.

 Hmm, the differences in my and your setup are
 1) I have also hvr-1300 in my system (for dvb-t)
 2) I modified the vdr sources instead of modifying the driver for 
 informing the system from the S2 capabilities (klaus explained also that 
 method in his 1.7.2 announcements). I can re-test this in another way once 
 the 2G_CAP patch is applied to v4l-dvb repository.

I applied Klaus latest patch to v4l-dvb source and changed
FE_CAN_2ND_GEN_MODULATION to FE_CAN_2G_MODULATION in dvbdevice.c.

Do you have MFE's version of v4l-dvb aswell ?
-- 
Grégoire FAVRE http://gregoire.favre.googlepages.com http://www.gnupg.org
   http://picasaweb.google.com/Gregoire.Favre

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


Re: [vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2008-12-30 Thread Reinhard Nissl
Hi,

Gregoire Favre schrieb:

 it took me some time to find out that my HVR-4000 don't work for
 DVB-S(2) with vdr-1.7.2.

[snip]

 The card tune well for example with kaffeine to BBC HD.
 
 Any idea on how to use it with VDR (dvb-t is of second interest to me) ? 

Looks like you have to add the 2nd generation flag to your
driver. Otherwise, vdr-1.7.2 doesn't assume that your card can do
DVB-S2. For stb0899 it looks like this:

diff -r 6241895c64f2 linux/drivers/media/dvb/frontends/stb0899_drv.c
--- a/linux/drivers/media/dvb/frontends/stb0899_drv.c   Thu Dec
18 13:07:18 2008 -0200
+++ b/linux/drivers/media/dvb/frontends/stb0899_drv.c   Tue Dec
30 10:06:51 2008 +0100
@@ -1914,6 +1914,7 @@
.caps   = FE_CAN_INVERSION_AUTO |
  FE_CAN_FEC_AUTO   |
  FE_CAN_QPSK
+|0x1000
},

.release= stb0899_release,

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] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2008-12-30 Thread Oleg Roitburd
2008/12/29 Gregoire Favre gregoire.fa...@gmail.com:

 DVB: registering adapter 1 frontend 0 (Conexant CX24116/CX24118)...
 DVB: registering adapter 1 frontend 1 (Conexant CX22702 DVB-T)...
 cx88[1]/2: subsystem: 14f1:0084, board: Geniatech DVB-S [card=52]
 cx88[1]/2: cx2388x based DVB/ATSC card
 CX24123: detected CX24123
 DVB: registering new adapter (cx88[1])
 DVB: registering adapter 2 frontend 0 (Conexant CX24123/CX24109)...

 The problem is certainly in :
 DVB: registering adapter 1 frontend 0 (Conexant CX24116/CX24118)...
 DVB: registering adapter 1 frontend 1 (Conexant CX22702 DVB-T)...

 The card tune well for example with kaffeine to BBC HD.

 Any idea on how to use it with VDR (dvb-t is of second interest to me) ?
 --

VDR doesn't support MFE (Multifrontend) features of S2API
in dvbdevice.c

  cDvbName(const char *Name, int n) {
snprintf(buffer, sizeof(buffer), %s%d/%s%d, DEV_DVB_ADAPTER, n, Name, 0);
}
-
It will tries always frontend0

Regards
Oleg Roitburd

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


Re: [vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2008-12-30 Thread Gregoire Favre
On Tue, Dec 30, 2008 at 11:36:41AM +0100, Oleg Roitburd wrote:

That was my fist assumption too, BUT frontend0 is DVB-S and don't tune
to any DVB-S channels (or DVB-S2) so I guess there is another problem.

I have no DVB-T channel in VDR to test.

Is someone able to use his HVR-4000 with vdr-1.7.2 ?

Thanks.

  DVB: registering adapter 1 frontend 0 (Conexant CX24116/CX24118)...
  DVB: registering adapter 1 frontend 1 (Conexant CX22702 DVB-T)...
  cx88[1]/2: subsystem: 14f1:0084, board: Geniatech DVB-S [card=52]
  cx88[1]/2: cx2388x based DVB/ATSC card
  CX24123: detected CX24123
  DVB: registering new adapter (cx88[1])
  DVB: registering adapter 2 frontend 0 (Conexant CX24123/CX24109)...
 
  The problem is certainly in :
  DVB: registering adapter 1 frontend 0 (Conexant CX24116/CX24118)...
  DVB: registering adapter 1 frontend 1 (Conexant CX22702 DVB-T)...
 
  The card tune well for example with kaffeine to BBC HD.
 
  Any idea on how to use it with VDR (dvb-t is of second interest to me) ?
  --
 
 VDR doesn't support MFE (Multifrontend) features of S2API
 in dvbdevice.c
 
   cDvbName(const char *Name, int n) {
 snprintf(buffer, sizeof(buffer), %s%d/%s%d, DEV_DVB_ADAPTER, n, Name, 
 0);
 }
 -
 It will tries always frontend0

-- 
Grégoire FAVRE http://gregoire.favre.googlepages.com http://www.gnupg.org
   http://picasaweb.google.com/Gregoire.Favre

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


Re: [vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2008-12-30 Thread Gregoire Favre
On Tue, Dec 30, 2008 at 10:09:20AM +0100, Reinhard Nissl wrote:

Hello,

unfortunately, it also don't tune to DVB-S channels (I have applied
Klaus patch to the v4l-dvb sources).

Thanks.

  it took me some time to find out that my HVR-4000 don't work for
  DVB-S(2) with vdr-1.7.2.

 Looks like you have to add the 2nd generation flag to your
 driver. Otherwise, vdr-1.7.2 doesn't assume that your card can do
 DVB-S2. For stb0899 it looks like this:

-- 
Grégoire FAVRE http://gregoire.favre.googlepages.com http://www.gnupg.org
   http://picasaweb.google.com/Gregoire.Favre

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


Re: [vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2008-12-30 Thread Ian Bates
Gregoire Favre wrote:
 On Tue, Dec 30, 2008 at 11:36:41AM +0100, Oleg Roitburd wrote:
 
 That was my fist assumption too, BUT frontend0 is DVB-S and don't tune
 to any DVB-S channels (or DVB-S2) so I guess there is another problem.
 
 I have no DVB-T channel in VDR to test.
 
 Is someone able to use his HVR-4000 with vdr-1.7.2 ?
 
 Thanks.
 
 DVB: registering adapter 1 frontend 0 (Conexant CX24116/CX24118)...
 DVB: registering adapter 1 frontend 1 (Conexant CX22702 DVB-T)...
 cx88[1]/2: subsystem: 14f1:0084, board: Geniatech DVB-S [card=52]
 cx88[1]/2: cx2388x based DVB/ATSC card
 CX24123: detected CX24123
 DVB: registering new adapter (cx88[1])
 DVB: registering adapter 2 frontend 0 (Conexant CX24123/CX24109)...

 The problem is certainly in :
 DVB: registering adapter 1 frontend 0 (Conexant CX24116/CX24118)...
 DVB: registering adapter 1 frontend 1 (Conexant CX22702 DVB-T)...

 The card tune well for example with kaffeine to BBC HD.

 Any idea on how to use it with VDR (dvb-t is of second interest to me) ?
 --
 VDR doesn't support MFE (Multifrontend) features of S2API
 in dvbdevice.c
 
   cDvbName(const char *Name, int n) {
 snprintf(buffer, sizeof(buffer), %s%d/%s%d, DEV_DVB_ADAPTER, n, Name, 
 0);
 }
 -
 It will tries always frontend0
 

Hello G-F, all,

A data point which you may already have.  I am using:

- an HVR4000
- recent S2API v4l-dvb from HG
- vdr-1.7.0 with patches from this mailing list (h264, s2api)
- recent xineliboutput from CVS

and I am able to receive DVB-S and DVB-S2 channels

I also have not tried DVB-T (due to lack of signal).

I have not upgraded to vdr 1.7.2 as I understood changes involving the 
switch to TS had not been addressed by xineliboutput (not tested).


-- 
__
Ian Bates

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


Re: [vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2008-12-30 Thread Gregoire Favre
On Tue, Dec 30, 2008 at 12:25:07PM +, Ian Bates wrote:

I hadded no problem with 1.7.0 also... I would like to use 1.7.2.

 Hello G-F, all,
 
 A data point which you may already have.  I am using:
 
 - an HVR4000
 - recent S2API v4l-dvb from HG

Recent enough to have multiple frontends ?

 - vdr-1.7.0 with patches from this mailing list (h264, s2api)
 - recent xineliboutput from CVS
 
 and I am able to receive DVB-S and DVB-S2 channels
 
 I also have not tried DVB-T (due to lack of signal).
 
 I have not upgraded to vdr 1.7.2 as I understood changes involving the 
 switch to TS had not been addressed by xineliboutput (not tested).
-- 
Grégoire FAVRE http://gregoire.favre.googlepages.com http://www.gnupg.org
   http://picasaweb.google.com/Gregoire.Favre

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


[vdr] HVR-4000, vdr-1.7.2 and v4l-dvb'hg ?

2008-12-29 Thread Gregoire Favre
Hello,

it took me some time to find out that my HVR-4000 don't work for
DVB-S(2) with vdr-1.7.2.

v4l-dvb gives this when I start the modules :

saa7146: register extension 'budget_ci dvb'.
budget_ci dvb :04:00.0: PCI INT A - GSI 21 (level, low) - IRQ 21
saa7146: found saa7146 @ mem c2f96c00 (revision 1, irq 21) 
(0x13c2,0x100f).
saa7146 (0): dma buffer size 192512
DVB: registering new adapter (TT-Budget/WinTV-NOVA-CI PCI)
adapter has MAC addr = 00:d0:5c:23:a3:9b
input: Budget-CI dvb ir receiver saa7146 (0) as 
/devices/pci:00/:00:1e.0/:04:00.0/input/input13
DVB: registering adapter 0 frontend 0 (ST STV0299 DVB-S)...
Linux video capture interface: v2.00
cx88/0: cx2388x v4l2 driver version 0.0.6 loaded
cx8800 :04:02.0: PCI INT A - GSI 23 (level, low) - IRQ 23
cx88[0]: subsystem: 0070:6902, board: Hauppauge WinTV-HVR4000 DVB-S/S2/T/Hybrid 
[card=68,autodetected], frontend(s): 2
cx88[0]: TV tuner type 63, Radio tuner type -1
cx88[0]: i2c init: enabling analog demod on HVR1300/3000/4000 tuner
tuner' 8-0043: chip found @ 0x86 (cx88[0])
tda9887 8-0043: creating new instance
tda9887 8-0043: tda988[5/6/7] found
tuner' 8-0061: chip found @ 0xc2 (cx88[0])
tuner' 8-0063: chip found @ 0xc6 (cx88[0])
tveeprom 8-0050: Hauppauge model 69009, rev B2A0, serial# 1241151
tveeprom 8-0050: MAC address is 00-0D-FE-12-F0-3F
tveeprom 8-0050: tuner model is Philips FMD1216ME (idx 100, type 63)
tveeprom 8-0050: TV standards PAL(B/G) PAL(I) SECAM(L/L') PAL(D/D1/K) ATSC/DVB 
Digital (eeprom 0xf4)
tveeprom 8-0050: audio processor is CX882 (idx 33)
tveeprom 8-0050: decoder processor is CX882 (idx 25)
tveeprom 8-0050: has radio, has IR receiver, has no IR transmitter
cx88[0]: hauppauge eeprom: model=69009
tuner-simple 8-0061: creating new instance
tuner-simple 8-0061: type set to 63 (Philips FMD1216ME MK3 Hybrid Tuner)
input: cx88 IR (Hauppauge WinTV-HVR400 as 
/devices/pci:00/:00:1e.0/:04:02.0/input/input14
cx88[0]/0: found at :04:02.0, rev: 5, irq: 23, latency: 64, mmio: 0xdb00
wm8775' 8-001b: chip found @ 0x36 (cx88[0])
cx88[0]/0: registered device video0 [v4l2]
cx88[0]/0: registered device vbi0
cx88[0]/0: registered device radio0
cx8800 :04:05.0: PCI INT A - GSI 20 (level, low) - IRQ 20
cx88[1]: subsystem: 14f1:0084, board: Geniatech DVB-S [card=52,autodetected], 
frontend(s): 1
cx88[1]: TV tuner type 4, Radio tuner type -1
cx88[1]/0: found at :04:05.0, rev: 3, irq: 20, latency: 64, mmio: 0xd900
cx88[1]/0: registered device video1 [v4l2]
cx88[1]/0: registered device vbi1
cx2388x alsa driver version 0.0.6 loaded
cx88_audio :04:02.1: PCI INT A - GSI 23 (level, low) - IRQ 23
cx88[0]/1: CX88x/0: ALSA support for cx2388x boards
cx88/2: cx2388x MPEG-TS Driver Manager version 0.0.6 loaded
cx88[0]/2: cx2388x 8802 Driver Manager
cx88-mpeg driver manager :04:02.2: PCI INT A - GSI 23 (level, low) - IRQ 
23
cx88[0]/2: found at :04:02.2, rev: 5, irq: 23, latency: 64, mmio: 0xdd00
cx8802_probe() allocating 2 frontend(s)
cx88[1]/2: cx2388x 8802 Driver Manager
cx88-mpeg driver manager :04:05.2: PCI INT A - GSI 20 (level, low) - IRQ 
20
cx88[1]/2: found at :04:05.2, rev: 3, irq: 20, latency: 64, mmio: 0xda00
cx8802_probe() allocating 1 frontend(s)
cx88/2: cx2388x dvb driver version 0.0.6 loaded
cx88/2: registering cx8802 driver, type: dvb access: shared
cx88[0]/2: subsystem: 0070:6902, board: Hauppauge WinTV-HVR4000 
DVB-S/S2/T/Hybrid [card=68]
cx88[0]/2: cx2388x based DVB/ATSC card
tuner-simple 8-0061: attaching existing instance
tuner-simple 8-0061: type set to 63 (Philips FMD1216ME MK3 Hybrid Tuner)
DVB: registering new adapter (cx88[0])
DVB: registering adapter 1 frontend 0 (Conexant CX24116/CX24118)...
DVB: registering adapter 1 frontend 1 (Conexant CX22702 DVB-T)...
cx88[1]/2: subsystem: 14f1:0084, board: Geniatech DVB-S [card=52]
cx88[1]/2: cx2388x based DVB/ATSC card
CX24123: detected CX24123
DVB: registering new adapter (cx88[1])
DVB: registering adapter 2 frontend 0 (Conexant CX24123/CX24109)...

The problem is certainly in :
DVB: registering adapter 1 frontend 0 (Conexant CX24116/CX24118)...
DVB: registering adapter 1 frontend 1 (Conexant CX22702 DVB-T)...

The card tune well for example with kaffeine to BBC HD.

Any idea on how to use it with VDR (dvb-t is of second interest to me) ? 
-- 
Grégoire FAVRE http://gregoire.favre.googlepages.com http://www.gnupg.org
   http://picasaweb.google.com/Gregoire.Favre

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