/linux/Documentation/userspace-api/media/v4l/ |
H A D | vidioc-enumstd.rst | 60 * - :ref:`v4l2_std_id <v4l2-std-id>` 107 .. flat-table:: typedef v4l2_std_id 113 - ``v4l2_std_id`` 122 #define V4L2_STD_PAL_B ((v4l2_std_id)0x00000001) 123 #define V4L2_STD_PAL_B1 ((v4l2_std_id)0x00000002) 124 #define V4L2_STD_PAL_G ((v4l2_std_id)0x00000004) 125 #define V4L2_STD_PAL_H ((v4l2_std_id)0x00000008) 126 #define V4L2_STD_PAL_I ((v4l2_std_id)0x00000010) 127 #define V4L2_STD_PAL_D ((v4l2_std_id)0x00000020) 128 #define V4L2_STD_PAL_D1 ((v4l2_std_id) [all...] |
H A D | vidioc-g-std.rst | 20 ``int ioctl(int fd, VIDIOC_G_STD, v4l2_std_id *argp)`` 24 ``int ioctl(int fd, VIDIOC_S_STD, const v4l2_std_id *argp)`` 28 ``int ioctl(int fd, VIDIOC_SUBDEV_G_STD, v4l2_std_id *argp)`` 32 ``int ioctl(int fd, VIDIOC_SUBDEV_S_STD, const v4l2_std_id *argp)`` 41 Pointer to :c:type:`v4l2_std_id`. 48 :ref:`v4l2_std_id <v4l2-std-id>` type as argument. :ref:`VIDIOC_G_STD <VIDIOC_G_STD>`
|
H A D | vidioc-querystd.rst | 20 ``int ioctl(int fd, VIDIOC_QUERYSTD, v4l2_std_id *argp)`` 24 ``int ioctl(int fd, VIDIOC_SUBDEV_QUERYSTD, v4l2_std_id *argp)`` 33 Pointer to :c:type:`v4l2_std_id`. 40 pointer to a :ref:`v4l2_std_id <v4l2-std-id>` type. The driver
|
/linux/drivers/media/usb/pvrusb2/ |
H A D | pvrusb2-std.c | 14 v4l2_std_id id; 120 int pvr2_std_str_to_id(v4l2_std_id *idPtr,const char *bufPtr, in pvr2_std_str_to_id() 123 v4l2_std_id id = 0; in pvr2_std_str_to_id() 124 v4l2_std_id cmsk = 0; in pvr2_std_str_to_id() 125 v4l2_std_id t; in pvr2_std_str_to_id() 173 v4l2_std_id id) in pvr2_std_id_to_str() 215 v4l2_std_id pvr2_std_get_usable(void) in pvr2_std_get_usable()
|
H A D | pvrusb2-std.h | 16 int pvr2_std_str_to_id(v4l2_std_id *idPtr,const char *bufPtr, 24 v4l2_std_id id); 27 v4l2_std_id pvr2_std_get_usable(void);
|
H A D | pvrusb2-hdw-internal.h | 302 v4l2_std_id std_mask_eeprom; // Hardware supported selections 303 v4l2_std_id std_mask_avail; // Which standards we may select from 304 v4l2_std_id std_mask_cur; // Currently selected standard(s)
|
/linux/include/uapi/linux/ |
H A D | videodev2.h | 1406 typedef __u64 v4l2_std_id; typedef 1413 #define V4L2_STD_PAL_B ((v4l2_std_id)0x00000001) 1414 #define V4L2_STD_PAL_B1 ((v4l2_std_id)0x00000002) 1415 #define V4L2_STD_PAL_G ((v4l2_std_id)0x00000004) 1416 #define V4L2_STD_PAL_H ((v4l2_std_id)0x00000008) 1417 #define V4L2_STD_PAL_I ((v4l2_std_id)0x00000010) 1418 #define V4L2_STD_PAL_D ((v4l2_std_id)0x00000020) 1419 #define V4L2_STD_PAL_D1 ((v4l2_std_id)0x00000040) 1420 #define V4L2_STD_PAL_K ((v4l2_std_id)0x00000080) 1422 #define V4L2_STD_PAL_M ((v4l2_std_id) [all...] |
H A D | v4l2-subdev.h | 292 #define VIDIOC_SUBDEV_G_STD _IOR('V', 23, v4l2_std_id) 293 #define VIDIOC_SUBDEV_S_STD _IOW('V', 24, v4l2_std_id) 297 #define VIDIOC_SUBDEV_QUERYSTD _IOR('V', 63, v4l2_std_id)
|
/linux/drivers/media/pci/ivtv/ |
H A D | ivtv-ioctl.h | 18 void ivtv_s_std_enc(struct ivtv *itv, v4l2_std_id std); 19 void ivtv_s_std_dec(struct ivtv *itv, v4l2_std_id std);
|
/linux/drivers/media/test-drivers/vivid/ |
H A D | vivid-vid-cap.h | 17 extern const v4l2_std_id vivid_standard[]; 48 int vidioc_querystd(struct file *file, void *priv, v4l2_std_id *id); 49 int vivid_vid_cap_s_std(struct file *file, void *priv, v4l2_std_id id);
|
/linux/drivers/media/i2c/ |
H A D | bt819.c | 45 v4l2_std_id norm; 200 static int bt819_status(struct v4l2_subdev *sd, u32 *pstatus, v4l2_std_id *pstd) in bt819_status() 205 v4l2_std_id std = pstd ? *pstd : V4L2_STD_ALL; in bt819_status() 225 static int bt819_querystd(struct v4l2_subdev *sd, v4l2_std_id *std) in bt819_querystd() 235 static int bt819_s_std(struct v4l2_subdev *sd, v4l2_std_id std) in bt819_s_std()
|
H A D | vpx3220.c | 37 v4l2_std_id norm; 282 static int vpx3220_status(struct v4l2_subdev *sd, u32 *pstatus, v4l2_std_id *pstd) in vpx3220_status() 285 v4l2_std_id std = pstd ? *pstd : V4L2_STD_ALL; in vpx3220_status() 325 static int vpx3220_querystd(struct v4l2_subdev *sd, v4l2_std_id *std) in vpx3220_querystd() 337 static int vpx3220_s_std(struct v4l2_subdev *sd, v4l2_std_id std) in vpx3220_s_std()
|
H A D | saa7110.c | 46 v4l2_std_id norm; 177 static v4l2_std_id determine_norm(struct v4l2_subdev *sd) in determine_norm() 252 static int saa7110_querystd(struct v4l2_subdev *sd, v4l2_std_id *std) in saa7110_querystd() 258 static int saa7110_s_std(struct v4l2_subdev *sd, v4l2_std_id std) in saa7110_s_std()
|
H A D | ml86v7667.c | 88 v4l2_std_id std; 159 static int ml86v7667_querystd(struct v4l2_subdev *sd, v4l2_std_id *std) in ml86v7667_querystd() 234 static int ml86v7667_g_std(struct v4l2_subdev *sd, v4l2_std_id *std) in ml86v7667_g_std() 243 static int ml86v7667_s_std(struct v4l2_subdev *sd, v4l2_std_id std) in ml86v7667_s_std()
|
H A D | ks0127.c | 180 v4l2_std_id norm; 526 static int ks0127_s_std(struct v4l2_subdev *sd, v4l2_std_id std) in ks0127_s_std() 587 static int ks0127_status(struct v4l2_subdev *sd, u32 *pstatus, v4l2_std_id *pstd) in ks0127_status() 591 v4l2_std_id std = pstd ? *pstd : V4L2_STD_ALL; in ks0127_status() 616 static int ks0127_querystd(struct v4l2_subdev *sd, v4l2_std_id *std) in ks0127_querystd()
|
H A D | tvp5150.c | 84 v4l2_std_id norm; /* Current set standard */ 85 v4l2_std_id detected_norm; 683 v4l2_std_id std = decoder->norm; in tvp5150_set_vbi() 726 v4l2_std_id std = decoder->norm; in tvp5150_get_vbi() 759 static int tvp5150_set_std(struct v4l2_subdev *sd, v4l2_std_id std) in tvp5150_set_std() 787 static int tvp5150_g_std(struct v4l2_subdev *sd, v4l2_std_id *std) in tvp5150_g_std() 796 static int tvp5150_s_std(struct v4l2_subdev *sd, v4l2_std_id std) in tvp5150_s_std() 800 v4l2_std_id supported_stds; in tvp5150_s_std() 830 static v4l2_std_id tvp5150_read_std(struct v4l2_subdev *sd) in tvp5150_read_std() 866 static int tvp5150_querystd(struct v4l2_subdev *sd, v4l2_std_id *std_i [all...] |
H A D | tw9903.c | 30 v4l2_std_id norm; 114 static int tw9903_s_std(struct v4l2_subdev *sd, v4l2_std_id norm) in tw9903_s_std()
|
H A D | tw9906.c | 21 v4l2_std_id norm; 85 static int tw9906_s_std(struct v4l2_subdev *sd, v4l2_std_id norm) in tw9906_s_std()
|
H A D | bt856.c | 45 v4l2_std_id norm; 109 static int bt856_s_std_output(struct v4l2_subdev *sd, v4l2_std_id std) in bt856_s_std_output()
|
/linux/drivers/media/usb/usbtv/ |
H A D | usbtv.h | 76 v4l2_std_id norm; 112 v4l2_std_id norm;
|
H A D | usbtv-video.c | 63 static int usbtv_configure_for_norm(struct usbtv *usbtv, v4l2_std_id norm) in usbtv_configure_for_norm() 128 static uint16_t usbtv_norm_to_16f_reg(v4l2_std_id norm) in usbtv_norm_to_16f_reg() 149 static int usbtv_select_norm(struct usbtv *usbtv, v4l2_std_id norm) in usbtv_select_norm() 247 static const v4l2_std_id ntsc_mask = in usbtv_select_norm() 249 static const v4l2_std_id pal_mask = in usbtv_select_norm() 663 static int usbtv_g_std(struct file *file, void *priv, v4l2_std_id *norm) in usbtv_g_std() 670 static int usbtv_s_std(struct file *file, void *priv, v4l2_std_id norm) in usbtv_s_std()
|
/linux/drivers/media/tuners/ |
H A D | xc2028.c | 78 v4l2_std_id id; 86 v4l2_std_id id; 87 v4l2_std_id std_req; 242 static v4l2_std_id parse_audio_std_option(void) in parse_audio_std_option() 346 v4l2_std_id id; in load_all_firmwares() 432 v4l2_std_id *id) in seek_firmware() 477 v4l2_std_id match_mask; in seek_firmware() 543 v4l2_std_id *id) in load_firmware() 654 v4l2_std_id *id, __u16 int_freq, int scode) in load_scode() 718 v4l2_std_id st in check_firmware() [all...] |
/linux/include/media/ |
H A D | v4l2-subdev.h | 429 * @s_std_output: set v4l2_std_id for video OUTPUT devices. This is ignored by 437 * @g_tvnorms: get &v4l2_std_id with all standards supported by the video 440 * @g_tvnorms_output: get v4l2_std_id with all standards supported by the video 483 int (*g_std)(struct v4l2_subdev *sd, v4l2_std_id *norm); 484 int (*s_std)(struct v4l2_subdev *sd, v4l2_std_id norm); 485 int (*s_std_output)(struct v4l2_subdev *sd, v4l2_std_id std); 486 int (*g_std_output)(struct v4l2_subdev *sd, v4l2_std_id *std); 487 int (*querystd)(struct v4l2_subdev *sd, v4l2_std_id *std); 488 int (*g_tvnorms)(struct v4l2_subdev *sd, v4l2_std_id *std); 489 int (*g_tvnorms_output)(struct v4l2_subdev *sd, v4l2_std_id *st [all...] |
H A D | v4l2-ioctl.h | 441 int (*vidioc_g_std)(struct file *file, void *fh, v4l2_std_id *norm); 442 int (*vidioc_s_std)(struct file *file, void *fh, v4l2_std_id norm); 443 int (*vidioc_querystd)(struct file *file, void *fh, v4l2_std_id *a); 611 const char *v4l2_norm_to_name(v4l2_std_id id); 647 int v4l_video_std_enumstd(struct v4l2_standard *vs, v4l2_std_id id);
|
/linux/drivers/media/pci/cx88/ |
H A D | cx88-core.c | 619 static inline unsigned int norm_swidth(v4l2_std_id norm) in norm_swidth() 630 static inline unsigned int norm_hdelay(v4l2_std_id norm) in norm_hdelay() 641 static inline unsigned int norm_vdelay(v4l2_std_id norm) in norm_vdelay() 646 static inline unsigned int norm_fsc8(v4l2_std_id norm) in norm_fsc8() 667 static inline unsigned int norm_htotal(v4l2_std_id norm) in norm_htotal() 677 static inline unsigned int norm_vbipack(v4l2_std_id norm) in norm_vbipack() 831 v4l2_std_id norm = core->tvnorm; in set_tvaudio() 882 int cx88_set_tvnorm(struct cx88_core *core, v4l2_std_id norm) in cx88_set_tvnorm()
|