* [PATCH] Avermedia A16D composite input
@ 2008-06-18 1:45 Dan Taylor
2008-06-18 2:39 ` timf
0 siblings, 1 reply; 3+ messages in thread
From: Dan Taylor @ 2008-06-18 1:45 UTC (permalink / raw)
To: video4linux-list
[-- Attachment #1: Type: text/plain, Size: 1195 bytes --]
This is a patch against 78442352b885. It adds composite support for the
included Composite->S-video adapter that comes with the Avermedia A16D.
The work that went into DVB support for the card made this much simpler
than my earlier version.
As before, it has been tested with a signal generator and an iPod.
I appreciate the DVB work and hope to be testing it early next week.
Does anyone have a sample mplayer config file for DVB-T?
diff -upr linux-2.6.26-v4l/drivers/media/video/saa7134/saa7134-cards.c
linux-2.6.26-v4lc/drivers/media/video/saa7134/saa7134-cards.c
--- linux-2.6.26-v4l/drivers/media/video/saa7134/saa7134-cards.c
2008-06-15 05:33:42.000000000 -0800
+++ linux-2.6.26-v4lc/drivers/media/video/saa7134/saa7134-cards.c
2008-06-17 16:19:14.000000000 -0800
@@ -4269,6 +4269,10 @@ struct saa7134_board saa7134_boards[] =
.name = name_svideo,
.vmux = 8,
.amux = LINE1,
+ }, {
+ .name = name_comp,
+ .vmux = 0,
+ .amux = LINE1,
} },
.radio = {
.name = name_radio,
[-- Attachment #2: A16D-composite.patch --]
[-- Type: application/octet-stream, Size: 570 bytes --]
diff -upr linux-2.6.26-v4l/drivers/media/video/saa7134/saa7134-cards.c linux-2.6.26-v4lc/drivers/media/video/saa7134/saa7134-cards.c
--- linux-2.6.26-v4l/drivers/media/video/saa7134/saa7134-cards.c 2008-06-15 05:33:42.000000000 -0800
+++ linux-2.6.26-v4lc/drivers/media/video/saa7134/saa7134-cards.c 2008-06-17 16:19:14.000000000 -0800
@@ -4269,6 +4269,10 @@ struct saa7134_board saa7134_boards[] =
.name = name_svideo,
.vmux = 8,
.amux = LINE1,
+ }, {
+ .name = name_comp,
+ .vmux = 0,
+ .amux = LINE1,
} },
.radio = {
.name = name_radio,
[-- Attachment #3: Type: text/plain, Size: 164 bytes --]
--
video4linux-list mailing list
Unsubscribe mailto:video4linux-list-request@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/video4linux-list
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Avermedia A16D composite input
2008-06-18 1:45 [PATCH] Avermedia A16D composite input Dan Taylor
@ 2008-06-18 2:39 ` timf
2008-06-18 3:05 ` [linux-dvb] " Owen Townend
0 siblings, 1 reply; 3+ messages in thread
From: timf @ 2008-06-18 2:39 UTC (permalink / raw)
To: Dan Taylor; +Cc: video4linux-list, linux-dvb, Mauro Carvalho Chehab
Dan Taylor wrote:
> This is a patch against 78442352b885. It adds composite support for the
> included Composite->S-video adapter that comes with the Avermedia A16D.
> The work that went into DVB support for the card made this much simpler
> than my earlier version.
>
>
>
> As before, it has been tested with a signal generator and an iPod.
>
>
>
> I appreciate the DVB work and hope to be testing it early next week.
> Does anyone have a sample mplayer config file for DVB-T?
>
>
>
> diff -upr linux-2.6.26-v4l/drivers/media/video/saa7134/saa7134-cards.c
> linux-2.6.26-v4lc/drivers/media/video/saa7134/saa7134-cards.c
> --- linux-2.6.26-v4l/drivers/media/video/saa7134/saa7134-cards.c
> 2008-06-15 05:33:42.000000000 -0800
> +++ linux-2.6.26-v4lc/drivers/media/video/saa7134/saa7134-cards.c
> 2008-06-17 16:19:14.000000000 -0800
> @@ -4269,6 +4269,10 @@ struct saa7134_board saa7134_boards[] =
> .name = name_svideo,
> .vmux = 8,
> .amux = LINE1,
> + }, {
> + .name = name_comp,
> + .vmux = 0,
> + .amux = LINE1,
> } },
> .radio = {
> .name = name_radio,
>
>
>
>
>
>
>
>
>
> ------------------------------------------------------------------------
>
> --
> video4linux-list mailing list
> Unsubscribe mailto:video4linux-list-request@redhat.com?subject=unsubscribe
> https://www.redhat.com/mailman/listinfo/video4linux-list
Hi Dan,
Well done!
I just responded to alert you that you will need to send a patch to
Mauro direct as well.
You will need to run it through various checks before it will happen.
However, excellent, it looks like the card is complete!
Regards,
Timf
--
video4linux-list mailing list
Unsubscribe mailto:video4linux-list-request@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/video4linux-list
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [linux-dvb] [PATCH] Avermedia A16D composite input
2008-06-18 2:39 ` timf
@ 2008-06-18 3:05 ` Owen Townend
0 siblings, 0 replies; 3+ messages in thread
From: Owen Townend @ 2008-06-18 3:05 UTC (permalink / raw)
To: video4linux-list, linux-dvb
On 18/06/2008, timf <timf@iinet.net.au> wrote:
> Dan Taylor wrote:
> > This is a patch against 78442352b885. It adds composite support for the
> > included Composite->S-video adapter that comes with the Avermedia A16D.
> > The work that went into DVB support for the card made this much simpler
> > than my earlier version.
> >
> >
> >
> > As before, it has been tested with a signal generator and an iPod.
> >
> >
> >
> > I appreciate the DVB work and hope to be testing it early next week.
> > Does anyone have a sample mplayer config file for DVB-T?
> >
> >
> >
> > diff -upr linux-2.6.26-v4l/drivers/media/video/saa7134/saa7134-cards.c
> > linux-2.6.26-v4lc/drivers/media/video/saa7134/saa7134-cards.c
> > --- linux-2.6.26-v4l/drivers/media/video/saa7134/saa7134-cards.c
> > 2008-06-15 05:33:42.000000000 -0800
> > +++ linux-2.6.26-v4lc/drivers/media/video/saa7134/saa7134-cards.c
> > 2008-06-17 16:19:14.000000000 -0800
> > @@ -4269,6 +4269,10 @@ struct saa7134_board saa7134_boards[] =
> > .name = name_svideo,
> > .vmux = 8,
> > .amux = LINE1,
> > + }, {
> > + .name = name_comp,
> > + .vmux = 0,
> > + .amux = LINE1,
> > } },
> > .radio = {
> > .name = name_radio,
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > ------------------------------------------------------------------------
> >
> > --
> > video4linux-list mailing list
> > Unsubscribe mailto:video4linux-list-request@redhat.com?subject=unsubscribe
> > https://www.redhat.com/mailman/listinfo/video4linux-list
> Hi Dan,
> Well done!
> I just responded to alert you that you will need to send a patch to
> Mauro direct as well.
> You will need to run it through various checks before it will happen.
> However, excellent, it looks like the card is complete!
> Regards,
> Timf
>
> _______________________________________________
> linux-dvb mailing list
> linux-dvb@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
>
Hey,
I own one of these cards and have yet to use/test more than the dvb
input as yet, but want to add my thanks to any and all involved in the
hacking, coding and testing which lets it work for all of us.
Thanks again!
Cheers,
Owen.
_______________________________________________
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-06-18 3:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-18 1:45 [PATCH] Avermedia A16D composite input Dan Taylor
2008-06-18 2:39 ` timf
2008-06-18 3:05 ` [linux-dvb] " Owen Townend
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox