#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/init.h>
#include "cx23885.h"
Go to the source code of this file.
|
| module_param (vbibufs, int, 0644) |
|
| MODULE_PARM_DESC (vbibufs,"number of vbi buffers, range 2-32") |
|
| module_param (vbi_debug, int, 0644) |
|
| MODULE_PARM_DESC (vbi_debug,"enable debug messages [vbi]") |
|
int | cx23885_vbi_fmt (struct file *file, void *priv, struct v4l2_format *f) |
|
int | cx23885_vbi_irq (struct cx23885_dev *dev, u32 status) |
|
int | cx23885_restart_vbi_queue (struct cx23885_dev *dev, struct cx23885_dmaqueue *q) |
|
void | cx23885_vbi_timeout (unsigned long data) |
|
#define NTSC_VBI_END_LINE 21 |
#define NTSC_VBI_START_LINE 10 /* line 10 - 21 */ |
#define VBI_LINE_COUNT 17 |
#define VBI_LINE_LENGTH 1440 |
#define VBI_LINE_LENGTH 1440 |
void cx23885_vbi_timeout |
( |
unsigned long |
data | ) |
|
module_param |
( |
vbibufs |
, |
|
|
int |
, |
|
|
0644 |
|
|
) |
| |
module_param |
( |
vbi_debug |
, |
|
|
int |
, |
|
|
0644 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
vbibufs |
, |
|
|
"number of vbi |
buffers, |
|
|
range 2-32" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
vbi_debug |
, |
|
|
"enable debug messages " |
[vbi] |
|
) |
| |
Initial value:= {
.buf_setup = vbi_setup,
.buf_prepare = vbi_prepare,
.buf_queue = vbi_queue,
.buf_release = vbi_release,
}
Definition at line 283 of file cx23885-vbi.c.