public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [linux-dvb] [PATCH] S2API for vdr-1.7.0 (05-10-2008 - quickhack for DVB-S(2), DVB-T and DVB-C)
@ 2008-10-05 10:26 Niels Wagenaar
       [not found] ` <48E89837.6000102@cadsoft.de>
  0 siblings, 1 reply; 3+ messages in thread
From: Niels Wagenaar @ 2008-10-05 10:26 UTC (permalink / raw)
  To: VDR Mailinglist (vdr@linuxtv.org)
  Cc: LinuxTV Mailinglist (linux-dvb@linuxtv.org)

[-- Attachment #1: Type: text/plain, Size: 661 bytes --]

Hello All,

Here's a new patch for DVB-S, DVB-S2, DVB-T and DVB-C support using S2API in combination with VDR 1.7.0. By accident I used an old source tree for the patch from 04-10-2008, which resulted in problems getting a stable lock on DVB-T and/or perhaps DVB-C. The included patch will fix that.

Enclosed are two patches. The clean patch is for a clean VDR 1.7.0 source tree patched with Reinhard's vdr-1.7.0-h264-syncearly-framespersec-audioindexer-fielddetection-speedup.diff.bz2 patch. The patched patch is for those who have used the patch from 04-10-2008.

Again, any feedback on this patch is highly appreciated!

Regards,

Niels Wagenaar

[-- Attachment #2: vdr-1.7.0-s2api-05102008-clean.patch.gz --]
[-- Type: application/octet-stream, Size: 7820 bytes --]

[-- Attachment #3: vdr-1.7.0-s2api-04102008-05102008-patched.patch.gz --]
[-- Type: application/octet-stream, Size: 544 bytes --]

[-- Attachment #4: Type: text/plain, Size: 150 bytes --]

_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [linux-dvb] [vdr] [PATCH] S2API for vdr-1.7.0 (05-10-2008 - quickhack for DVB-S(2), DVB-T and DVB-C)
       [not found]   ` <20081005145219.79a89a5c@bk.ru>
@ 2008-10-05 11:41     ` Mika Laitio
  2008-10-05 12:45       ` Darron Broad
  0 siblings, 1 reply; 3+ messages in thread
From: Mika Laitio @ 2008-10-05 11:41 UTC (permalink / raw)
  To: VDR Mailing List; +Cc: linux-dvb

>>> Enclosed are two patches. The clean patch is for a clean VDR 1.7.0 source tree patched with Reinhard's
>>> vdr-1.7.0-h264-syncearly-framespersec-audioindexer-fielddetection-speedup.diff.bz2 patch. The patched patch is for
>>> those who have used the patch from 04-10-2008.
>>
>> I'm about to begin setting up my new VDR with DVB-S2 support, so I was wondering
>>
>> - where is the ultimate S2API driver source?
>
> http://linuxtv.org/hg/v4l-dvb/
> http://linuxtv.org/hg/~stoth/s2/
> http://linuxtv.org/hg/~stoth/s2-mfe/ - s2api with multifrontend support

Steve can you comment the differences between s2 and s2-mfe trees and 
whether those are planned to be compined in near future?

To my understanding the only difference between s2 and s2-mfe branches 
is the support for hvr-4000 style of devices. So:

- s2:
 	--> would support only 1 frontend for 1 card at a time. Therefore 
one would need to select during the driver loading time whether to want to use 
hvr-4000 in DVB-S/S2 mode or in DVB-T mode.

So in dev-tree following are available:

[root@tinka vdr-1.7.0]# ls -la /dev/dvb/adapter0/
total 0
drwxr-xr-x  2 root   root     120 2008-10-05 10:56 ./
drwxr-xr-x  4 root   root      80 2008-10-05 10:56 ../
crw-rw----+ 1 lamikr video 212, 4 2008-10-05 10:56 demux0
crw-rw----+ 1 lamikr video 212, 5 2008-10-05 10:56 dvr0
crw-rw----+ 1 lamikr video 212, 3 2008-10-05 10:56 frontend0
crw-rw----+ 1 lamikr video 212, 7 2008-10-05 10:56 net0

- s2-mfe:
 	--> can create multiple fronends for single card eventhoughg only 
one of those can in reality to be used simultaneously. Thus one 
does not need to select between DVB-S/S2 mode and DVB-T mode 
during the driver load time. So following nodes are available:

[root@tinka vdr-1.7.0]# ls -la /dev/dvb/adapter0/
total 0
drwxr-xr-x  2 root   root      200 2008-10-05 10:56 ./
drwxr-xr-x  4 root   root       80 2008-10-05 10:56 ../
crw-rw----+ 1 lamikr video 212, 68 2008-10-05 10:56 demux0
crw-rw----+ 1 lamikr video 212, 84 2008-10-05 10:56 demux1
crw-rw----+ 1 lamikr video 212, 69 2008-10-05 10:56 dvr0
crw-rw----+ 1 lamikr video 212, 85 2008-10-05 10:56 dvr1
crw-rw----+ 1 lamikr video 212, 67 2008-10-05 10:56 frontend0
crw-rw----+ 1 lamikr video 212, 83 2008-10-05 10:56 frontend1
crw-rw----+ 1 lamikr video 212, 71 2008-10-05 10:56 net0
crw-rw----+ 1 lamikr video 212, 87 2008-10-05 10:56 net1

Mika

_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [linux-dvb] [vdr] [PATCH] S2API for vdr-1.7.0 (05-10-2008 - quickhack for DVB-S(2), DVB-T and DVB-C)
  2008-10-05 11:41     ` [linux-dvb] [vdr] " Mika Laitio
@ 2008-10-05 12:45       ` Darron Broad
  0 siblings, 0 replies; 3+ messages in thread
From: Darron Broad @ 2008-10-05 12:45 UTC (permalink / raw)
  To: Mika Laitio; +Cc: linux-dvb, VDR Mailing List

In message <Pine.LNX.4.64.0810051425330.28540@shogun.pilppa.org>, Mika Laitio wrote:

LO.

>>>> Enclosed are two patches. The clean patch is for a clean VDR 1.7.0 source tree patched with Reinhard's
>>>> vdr-1.7.0-h264-syncearly-framespersec-audioindexer-fielddetection-speedup.diff.bz2 patch. The patched patch is for
>>>> those who have used the patch from 04-10-2008.
>>>
>>> I'm about to begin setting up my new VDR with DVB-S2 support, so I was wondering
>>>
>>> - where is the ultimate S2API driver source?
>>
>> http://linuxtv.org/hg/v4l-dvb/
>> http://linuxtv.org/hg/~stoth/s2/
>> http://linuxtv.org/hg/~stoth/s2-mfe/ - s2api with multifrontend support
>
>Steve can you comment the differences between s2 and s2-mfe trees and 
>whether those are planned to be compined in near future?

s2-mfe is work in progress. in fact there are a number of patches here:
http://dev.kewl.org/v4l-dvb/patches/

Some are specific to your card and some are related to s2api and
some are multi-frontend only.

mfe has been tested on cx88 cards but adds support for others
which has not been tested extensively and needs evaluation.

>To my understanding the only difference between s2 and s2-mfe branches 
>is the support for hvr-4000 style of devices. So:

The only difference from an end-user perspective is how you describe.

>- s2:
> 	--> would support only 1 frontend for 1 card at a time. Therefore 
>one would need to select during the driver loading time whether to want to use 
>hvr-4000 in DVB-S/S2 mode or in DVB-T mode.
>
>So in dev-tree following are available:
>
>[root@tinka vdr-1.7.0]# ls -la /dev/dvb/adapter0/
>total 0
>drwxr-xr-x  2 root   root     120 2008-10-05 10:56 ./
>drwxr-xr-x  4 root   root      80 2008-10-05 10:56 ../
>crw-rw----+ 1 lamikr video 212, 4 2008-10-05 10:56 demux0
>crw-rw----+ 1 lamikr video 212, 5 2008-10-05 10:56 dvr0
>crw-rw----+ 1 lamikr video 212, 3 2008-10-05 10:56 frontend0
>crw-rw----+ 1 lamikr video 212, 7 2008-10-05 10:56 net0
>
>- s2-mfe:
> 	--> can create multiple fronends for single card eventhoughg only 
>one of those can in reality to be used simultaneously. Thus one 
>does not need to select between DVB-S/S2 mode and DVB-T mode 
>during the driver load time. So following nodes are available:
>
>[root@tinka vdr-1.7.0]# ls -la /dev/dvb/adapter0/
>total 0
>drwxr-xr-x  2 root   root      200 2008-10-05 10:56 ./
>drwxr-xr-x  4 root   root       80 2008-10-05 10:56 ../
>crw-rw----+ 1 lamikr video 212, 68 2008-10-05 10:56 demux0
>crw-rw----+ 1 lamikr video 212, 84 2008-10-05 10:56 demux1
>crw-rw----+ 1 lamikr video 212, 69 2008-10-05 10:56 dvr0
>crw-rw----+ 1 lamikr video 212, 85 2008-10-05 10:56 dvr1
>crw-rw----+ 1 lamikr video 212, 67 2008-10-05 10:56 frontend0
>crw-rw----+ 1 lamikr video 212, 83 2008-10-05 10:56 frontend1
>crw-rw----+ 1 lamikr video 212, 71 2008-10-05 10:56 net0
>crw-rw----+ 1 lamikr video 212, 87 2008-10-05 10:56 net1

If you want to rename/re-order your frontends then refer to udev
rules/script here: http://dev.kewl.org/v4l-dvb/udev/

Plus, if you use an application that can make use of both frontends
then you should apply this patch:
	http://dev.kewl.org/v4l-dvb/patches/s2-mfe-shared-retry-9036.diff

Success or failure reports when using this patch are very welcome.

Cya!

--

 // /
{:)==={ Darron Broad <darron@kewl.org>
 \\ \ 


_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-10-05 12:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-05 10:26 [linux-dvb] [PATCH] S2API for vdr-1.7.0 (05-10-2008 - quickhack for DVB-S(2), DVB-T and DVB-C) Niels Wagenaar
     [not found] ` <48E89837.6000102@cadsoft.de>
     [not found]   ` <20081005145219.79a89a5c@bk.ru>
2008-10-05 11:41     ` [linux-dvb] [vdr] " Mika Laitio
2008-10-05 12:45       ` Darron Broad

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox