#include <linux/init.h>
#include <linux/list.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/sort.h>
#include "saa7134-reg.h"
#include "saa7134.h"
#include <media/v4l2-common.h>
#include <media/saa6588.h>
Go to the source code of this file.
|
| module_param (video_debug, int, 0644) |
|
| MODULE_PARM_DESC (video_debug,"enable debug messages [video]") |
|
| module_param (gbuffers, int, 0444) |
|
| MODULE_PARM_DESC (gbuffers,"number of capture buffers, range 2-32") |
|
| module_param (noninterlaced, int, 0644) |
|
| MODULE_PARM_DESC (noninterlaced,"capture non interlaced video") |
|
| module_param_string (secam, secam, sizeof(secam), 0644) |
|
| MODULE_PARM_DESC (secam,"force SECAM variant, either DK,L or Lc") |
|
void | saa7134_set_tvnorm_hw (struct saa7134_dev *dev) |
|
int | saa7134_g_ctrl_internal (struct saa7134_dev *dev, struct saa7134_fh *fh, struct v4l2_control *c) |
|
| EXPORT_SYMBOL_GPL (saa7134_g_ctrl_internal) |
|
int | saa7134_s_ctrl_internal (struct saa7134_dev *dev, struct saa7134_fh *fh, struct v4l2_control *c) |
|
| EXPORT_SYMBOL_GPL (saa7134_s_ctrl_internal) |
|
int | saa7134_queryctrl (struct file *file, void *priv, struct v4l2_queryctrl *c) |
|
| EXPORT_SYMBOL_GPL (saa7134_queryctrl) |
|
int | saa7134_s_std_internal (struct saa7134_dev *dev, struct saa7134_fh *fh, v4l2_std_id *id) |
|
| EXPORT_SYMBOL_GPL (saa7134_s_std_internal) |
|
int | saa7134_video_init1 (struct saa7134_dev *dev) |
|
int | saa7134_videoport_init (struct saa7134_dev *dev) |
|
int | saa7134_video_init2 (struct saa7134_dev *dev) |
|
void | saa7134_irq_video_signalchange (struct saa7134_dev *dev) |
|
void | saa7134_irq_video_done (struct saa7134_dev *dev, unsigned long status) |
|
#define dprintk |
( |
|
fmt, |
|
|
|
arg... |
|
) |
| |
Value:.h_start = 0, \
.h_stop = 719, \
.video_v_start = 23, \
.video_v_stop = 262, \
.vbi_v_start_0 = 10, \
.vbi_v_stop_0 = 21, \
.vbi_v_start_1 = 273, \
.src_timing = 7
Definition at line 206 of file saa7134-video.c.
Value:.h_start = 0, \
.h_stop = 719, \
.video_v_start = 24, \
.video_v_stop = 311, \
.vbi_v_start_0 = 7, \
.vbi_v_stop_0 = 22, \
.vbi_v_start_1 = 319, \
.src_timing = 4
Definition at line 196 of file saa7134-video.c.
#define VP_CLK_CTRL1_INVERTED 0x02 |
#define VP_CLK_CTRL1_NON_INVERTED 0x00 |
#define VP_CLK_CTRL2_DELAYED 0x04 |
#define VP_CLK_CTRL2_NOT_DELAYED 0x00 |
#define VP_T_CODE_P_INVERTED 0x01 |
#define VP_T_CODE_P_NON_INVERTED 0x00 |
#define VP_VS_TYPE_F_ITU 0x06 |
#define VP_VS_TYPE_MASK 0x07 |
#define VP_VS_TYPE_OFF 0x00 |
#define VP_VS_TYPE_RESERVED1 0x04 |
#define VP_VS_TYPE_RESERVED2 0x05 |
#define VP_VS_TYPE_SC_FID 0x07 |
#define VP_VS_TYPE_V123 0x01 |
#define VP_VS_TYPE_V_ITU 0x02 |
#define VP_VS_TYPE_VGATE_L 0x03 |
module_param |
( |
gbuffers |
, |
|
|
int |
, |
|
|
0444 |
|
|
) |
| |
module_param |
( |
noninterlaced |
, |
|
|
int |
, |
|
|
0644 |
|
|
) |
| |
module_param_string |
( |
secam |
, |
|
|
secam |
, |
|
|
sizeof(secam) |
, |
|
|
0644 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
gbuffers |
, |
|
|
"number of capture |
buffers, |
|
|
range 2-32" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
noninterlaced |
, |
|
|
"capture non interlaced video" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
secam |
, |
|
|
"force SECAM |
variant, |
|
|
either |
DK, |
|
|
L or Lc" |
|
|
) |
| |
Initial value:= {
.name = "saa7134-radio",
.fops = &radio_fops,
.ioctl_ops = &radio_ioctl_ops,
}
Definition at line 2503 of file saa7134-video.c.
Initial value:= {
.name = "saa7134-video",
.fops = &video_fops,
.ioctl_ops = &video_ioctl_ops,
}
Definition at line 2495 of file saa7134-video.c.