* [linux-dvb] libdvbapi multiproto patch ?
@ 2008-05-05 7:54 ChaosMedia > WebDev
2008-05-05 11:00 ` Christoph Pfister
[not found] ` <E1Jsvjz-000OP1-00.goga777-bk-ru@f190.mail.ru>
0 siblings, 2 replies; 5+ messages in thread
From: ChaosMedia > WebDev @ 2008-05-05 7:54 UTC (permalink / raw)
To: linux-dvb
Hi,
i'm going to try to bring multiproto support to kaffeine for i'd really
like to use my technotrend s2-3200 (dvb-s2) with it.
As far as i can tell kaffeine uses libdvbapi which is part of linuxtv
dvb-apps repo.
So i'd like to know if there's already been any patch made to bring
multiproto to libdvbapi ?
I don't know much about multiproto or v4l-dvb api, or dvb rfc, but i'll
probably focus on both the wiki info
http://www.linuxtv.org/wiki/index.php/Multiproto and a good app example
using macros referenced also in the wiki which is getstream
http://silicon-verl.de/home/flo/projects/streaming/
any comments, further docs, references or examples, are welcome.
thx
Marc
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [linux-dvb] libdvbapi multiproto patch ?
2008-05-05 7:54 [linux-dvb] libdvbapi multiproto patch ? ChaosMedia > WebDev
@ 2008-05-05 11:00 ` Christoph Pfister
2008-05-05 11:47 ` ChaosMedia > WebDev
[not found] ` <E1Jsvjz-000OP1-00.goga777-bk-ru@f190.mail.ru>
1 sibling, 1 reply; 5+ messages in thread
From: Christoph Pfister @ 2008-05-05 11:00 UTC (permalink / raw)
To: linux-dvb
Am Montag 05 Mai 2008 09:54:53 schrieb ChaosMedia > WebDev:
> Hi,
>
> i'm going to try to bring multiproto support to kaffeine for i'd really
> like to use my technotrend s2-3200 (dvb-s2) with it.
>
> As far as i can tell kaffeine uses libdvbapi which is part of linuxtv
> dvb-apps repo.
No. Only libdvben50221 + the ca part of libdvbapi are used.
> So i'd like to know if there's already been any patch made to bring
> multiproto to libdvbapi ?
>
> I don't know much about multiproto or v4l-dvb api, or dvb rfc, but i'll
> probably focus on both the wiki info
> http://www.linuxtv.org/wiki/index.php/Multiproto and a good app example
> using macros referenced also in the wiki which is getstream
> http://silicon-verl.de/home/flo/projects/streaming/
>
> any comments, further docs, references or examples, are welcome.
>
> thx
>
> Marc
Christoph
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [linux-dvb] libdvbapi multiproto patch ?
[not found] ` <E1Jsvjz-000OP1-00.goga777-bk-ru@f190.mail.ru>
@ 2008-05-05 11:24 ` ChaosMedia > WebDev
0 siblings, 0 replies; 5+ messages in thread
From: ChaosMedia > WebDev @ 2008-05-05 11:24 UTC (permalink / raw)
To: linux-dvb
Igor wrote:
>
> you can see the new multiproto API in http://jusst.de/hg/multiproto/file/b5a34b6a209d/linux/include/linux/dvb/frontend.h
> You can compare it (diff) with existing frontend.h from dvb-v4l
>
humm yeah but it seems that multiproto frontend.h just takes the whole
regular frontend, for backward compatibility i guess, and puts its own
declarations for the same values and its new ones at the bottom.
Not sure i need to go over it though if i can hide function calls from
the libdvbapi using macros as it was done in other examples.
i'll probably need to update the api with missing dvb-s2 declarations,
as the api's supposed to act as a layer between the driver and the
application, and then update the api to access them or do it in the
application, i don't really know..
Marc
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [linux-dvb] libdvbapi multiproto patch ?
2008-05-05 11:00 ` Christoph Pfister
@ 2008-05-05 11:47 ` ChaosMedia > WebDev
2008-05-07 16:39 ` Christoph Pfister
0 siblings, 1 reply; 5+ messages in thread
From: ChaosMedia > WebDev @ 2008-05-05 11:47 UTC (permalink / raw)
To: linux-dvb
Christoph Pfister wrote:
> No. Only libdvben50221 + the ca part of libdvbapi are used.
>
>
okay thx, what's libdvben50221 compared to libdvbapi ? Are those two
libs only used for CAM purposes ?
Anyways, i've checked DvbStream::tuneDvb and seen it uses the frontend
declarations directly.
Good thing if i don't have to mess with a lib in the middle..
I'll see if i can manage to use some fancy macros and keep ifdef out of
the main code.
thx
Marc
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [linux-dvb] libdvbapi multiproto patch ?
2008-05-05 11:47 ` ChaosMedia > WebDev
@ 2008-05-07 16:39 ` Christoph Pfister
0 siblings, 0 replies; 5+ messages in thread
From: Christoph Pfister @ 2008-05-07 16:39 UTC (permalink / raw)
To: ChaosMedia > WebDev; +Cc: linux-dvb
Am Montag 05 Mai 2008 13:47:17 schrieb ChaosMedia > WebDev:
> Christoph Pfister wrote:
> > No. Only libdvben50221 + the ca part of libdvbapi are used.
>
> okay thx, what's libdvben50221 compared to libdvbapi ? Are those two
> libs only used for CAM purposes ?
Yes, those are for cam stuff.
> Anyways, i've checked DvbStream::tuneDvb and seen it uses the frontend
> declarations directly.
> Good thing if i don't have to mess with a lib in the middle..
>
> I'll see if i can manage to use some fancy macros and keep ifdef out of
> the main code.
>
> thx
> Marc
Christoph
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2008-05-07 16:42 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-05 7:54 [linux-dvb] libdvbapi multiproto patch ? ChaosMedia > WebDev
2008-05-05 11:00 ` Christoph Pfister
2008-05-05 11:47 ` ChaosMedia > WebDev
2008-05-07 16:39 ` Christoph Pfister
[not found] ` <E1Jsvjz-000OP1-00.goga777-bk-ru@f190.mail.ru>
2008-05-05 11:24 ` ChaosMedia > WebDev
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox