diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/media/video-buf-dvb.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'include/media/video-buf-dvb.h')
-rw-r--r-- | include/media/video-buf-dvb.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/include/media/video-buf-dvb.h b/include/media/video-buf-dvb.h new file mode 100644 index 000000000000..94bd33619aa5 --- /dev/null +++ b/include/media/video-buf-dvb.h | |||
@@ -0,0 +1,36 @@ | |||
1 | #include <dvbdev.h> | ||
2 | #include <dmxdev.h> | ||
3 | #include <dvb_demux.h> | ||
4 | #include <dvb_net.h> | ||
5 | #include <dvb_frontend.h> | ||
6 | |||
7 | struct videobuf_dvb { | ||
8 | /* filling that the job of the driver */ | ||
9 | char *name; | ||
10 | struct dvb_frontend *frontend; | ||
11 | struct videobuf_queue dvbq; | ||
12 | |||
13 | /* video-buf-dvb state info */ | ||
14 | struct semaphore lock; | ||
15 | struct task_struct *thread; | ||
16 | int nfeeds; | ||
17 | |||
18 | /* videobuf_dvb_(un)register manges this */ | ||
19 | struct dvb_adapter *adapter; | ||
20 | struct dvb_demux demux; | ||
21 | struct dmxdev dmxdev; | ||
22 | struct dmx_frontend fe_hw; | ||
23 | struct dmx_frontend fe_mem; | ||
24 | struct dvb_net net; | ||
25 | }; | ||
26 | |||
27 | int videobuf_dvb_register(struct videobuf_dvb *dvb, | ||
28 | struct module *module, | ||
29 | void *adapter_priv); | ||
30 | void videobuf_dvb_unregister(struct videobuf_dvb *dvb); | ||
31 | |||
32 | /* | ||
33 | * Local variables: | ||
34 | * c-basic-offset: 8 | ||
35 | * End: | ||
36 | */ | ||