diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-26 17:54:54 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-26 17:54:54 -0200 |
commit | 9a4c4bb7abbb9174990491388b3b5b963a8e824e (patch) | |
tree | 73b442c918ca4ed0b3bbc04bd9c7414f4e6e62e6 /linux/drivers/media/video/bt8xx/bttv-audio-hook.h | |
parent | f7d8cfd0cd4b120216f408c6f2bf8137eafbb8ce (diff) | |
download | mediapointer-dvb-s2-9a4c4bb7abbb9174990491388b3b5b963a8e824e.tar.gz mediapointer-dvb-s2-9a4c4bb7abbb9174990491388b3b5b963a8e824e.tar.bz2 |
Audio hooks moved to another file
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
---
linux/drivers/media/video/bt8xx/Makefile | 2
linux/drivers/media/video/bt8xx/bttv-audio-hook.c | 390 +++++++++++++++++++++
linux/drivers/media/video/bt8xx/bttv-audio-hook.h | 23 +
linux/drivers/media/video/bt8xx/bttv-cards.c | 399 ----------------------
linux/drivers/media/video/bt8xx/bttv.h | 2
linux/drivers/media/video/bt8xx/bttvp.h | 3
6 files changed, 420 insertions(+), 399 deletions(-)
Diffstat (limited to 'linux/drivers/media/video/bt8xx/bttv-audio-hook.h')
-rw-r--r-- | linux/drivers/media/video/bt8xx/bttv-audio-hook.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/linux/drivers/media/video/bt8xx/bttv-audio-hook.h b/linux/drivers/media/video/bt8xx/bttv-audio-hook.h new file mode 100644 index 000000000..9770cacc1 --- /dev/null +++ b/linux/drivers/media/video/bt8xx/bttv-audio-hook.h @@ -0,0 +1,23 @@ +/* + * Handlers for board audio hooks, splitted from bttv-cards + * + * Copyright (c) 2006 Mauro Carvalho Chehab (mchehab@infradead.org) + * This code is placed under the terms of the GNU General Public License + */ + +#include "bttvp.h" + +static void winview_audio(struct bttv *btv, struct video_audio *v, int set); +static void lt9415_audio(struct bttv *btv, struct video_audio *v, int set); +static void avermedia_tvphone_audio(struct bttv *btv, struct video_audio *v, + int set); +static void avermedia_tv_stereo_audio(struct bttv *btv, struct video_audio *v, + int set); +static void terratv_audio(struct bttv *btv, struct video_audio *v, int set); +static void gvbctv3pci_audio(struct bttv *btv, struct video_audio *v, int set); +static void gvbctv5pci_audio(struct bttv *btv, struct video_audio *v, int set); +static void winfast2000_audio(struct bttv *btv, struct video_audio *v, int set); +static void pvbt878p9b_audio(struct bttv *btv, struct video_audio *v, int set); +static void fv2000s_audio(struct bttv *btv, struct video_audio *v, int set); +static void windvr_audio(struct bttv *btv, struct video_audio *v, int set); +static void adtvk503_audio(struct bttv *btv, struct video_audio *v, int set); |