/linux-4.19.296/drivers/media/common/ |
D | cx2341x.c | 1271 return container_of(ctrl->handler, struct cx2341x_handler, hdl); in to_cxhdl() 1274 static int cx2341x_hdl_api(struct cx2341x_handler *hdl, in cx2341x_hdl_api() argument 1286 return hdl->func(hdl->priv, cmd, args, 0, data); in cx2341x_hdl_api() 1297 struct cx2341x_handler *hdl = to_cxhdl(ctrl); in cx2341x_try_ctrl() local 1304 int gop = hdl->video_gop_size->val; in cx2341x_try_ctrl() 1311 hdl->video_gop_size->val = gop; in cx2341x_try_ctrl() 1317 hdl->video_encoding->val = in cx2341x_try_ctrl() 1318 (hdl->stream_type->val == V4L2_MPEG_STREAM_TYPE_MPEG1_SS || in cx2341x_try_ctrl() 1319 hdl->stream_type->val == V4L2_MPEG_STREAM_TYPE_MPEG1_VCD) ? in cx2341x_try_ctrl() 1322 if (hdl->video_encoding->val == V4L2_MPEG_VIDEO_ENCODING_MPEG_1) in cx2341x_try_ctrl() [all …]
|
/linux-4.19.296/include/media/ |
D | v4l2-ctrls.h | 397 int v4l2_ctrl_handler_init_class(struct v4l2_ctrl_handler *hdl, 422 #define v4l2_ctrl_handler_init(hdl, nr_of_controls_hint) \ argument 426 v4l2_ctrl_handler_init_class(hdl, nr_of_controls_hint, \ 430 "(" #hdl ")->_lock"); \ 434 #define v4l2_ctrl_handler_init(hdl, nr_of_controls_hint) \ argument 435 v4l2_ctrl_handler_init_class(hdl, nr_of_controls_hint, NULL, NULL) 445 void v4l2_ctrl_handler_free(struct v4l2_ctrl_handler *hdl); 478 int __v4l2_ctrl_handler_setup(struct v4l2_ctrl_handler *hdl); 489 int v4l2_ctrl_handler_setup(struct v4l2_ctrl_handler *hdl); 503 void v4l2_ctrl_handler_log_status(struct v4l2_ctrl_handler *hdl, [all …]
|
/linux-4.19.296/drivers/media/v4l2-core/ |
D | v4l2-ctrls.c | 1883 static inline int handler_set_err(struct v4l2_ctrl_handler *hdl, int err) in handler_set_err() argument 1885 if (hdl->error == 0) in handler_set_err() 1886 hdl->error = err; in handler_set_err() 1891 int v4l2_ctrl_handler_init_class(struct v4l2_ctrl_handler *hdl, in v4l2_ctrl_handler_init_class() argument 1895 mutex_init(&hdl->_lock); in v4l2_ctrl_handler_init_class() 1896 hdl->lock = &hdl->_lock; in v4l2_ctrl_handler_init_class() 1897 lockdep_set_class_and_name(hdl->lock, key, name); in v4l2_ctrl_handler_init_class() 1898 INIT_LIST_HEAD(&hdl->ctrls); in v4l2_ctrl_handler_init_class() 1899 INIT_LIST_HEAD(&hdl->ctrl_refs); in v4l2_ctrl_handler_init_class() 1900 hdl->nr_of_buckets = 1 + nr_of_controls_hint / 8; in v4l2_ctrl_handler_init_class() [all …]
|
/linux-4.19.296/drivers/media/radio/ |
D | radio-keene.c | 61 struct v4l2_ctrl_handler hdl; member 246 container_of(ctrl->handler, struct keene_device, hdl); in keene_s_ctrl() 299 v4l2_ctrl_handler_free(&radio->hdl); in usb_keene_video_device_release() 310 struct v4l2_ctrl_handler *hdl; in usb_keene_probe() local 336 hdl = &radio->hdl; in usb_keene_probe() 337 v4l2_ctrl_handler_init(hdl, 4); in usb_keene_probe() 338 v4l2_ctrl_new_std(hdl, &keene_ctrl_ops, V4L2_CID_AUDIO_MUTE, in usb_keene_probe() 340 v4l2_ctrl_new_std_menu(hdl, &keene_ctrl_ops, V4L2_CID_TUNE_PREEMPHASIS, in usb_keene_probe() 342 v4l2_ctrl_new_std(hdl, &keene_ctrl_ops, V4L2_CID_TUNE_POWER_LEVEL, in usb_keene_probe() 344 v4l2_ctrl_new_std(hdl, &keene_ctrl_ops, V4L2_CID_AUDIO_COMPRESSION_GAIN, in usb_keene_probe() [all …]
|
D | radio-sf16fmi.c | 49 struct v4l2_ctrl_handler hdl; member 193 struct fmi *fmi = container_of(ctrl->handler, struct fmi, hdl); in fmi_s_ctrl() 277 struct v4l2_ctrl_handler *hdl = &fmi->hdl; in fmi_init() local 330 v4l2_ctrl_handler_init(hdl, 1); in fmi_init() 331 v4l2_ctrl_new_std(hdl, &fmi_ctrl_ops, in fmi_init() 333 v4l2_dev->ctrl_handler = hdl; in fmi_init() 334 if (hdl->error) { in fmi_init() 335 res = hdl->error; in fmi_init() 337 v4l2_ctrl_handler_free(hdl); in fmi_init() 357 v4l2_ctrl_handler_free(hdl); in fmi_init() [all …]
|
D | radio-miropcm20.c | 437 struct v4l2_ctrl_handler *hdl; in pcm20_init() local 455 hdl = &dev->ctrl_handler; in pcm20_init() 456 v4l2_ctrl_handler_init(hdl, 7); in pcm20_init() 457 v4l2_ctrl_new_std(hdl, &pcm20_ctrl_ops, in pcm20_init() 459 dev->rds_pty = v4l2_ctrl_new_std(hdl, NULL, in pcm20_init() 461 dev->rds_ps_name = v4l2_ctrl_new_std(hdl, NULL, in pcm20_init() 463 dev->rds_radio_test = v4l2_ctrl_new_std(hdl, NULL, in pcm20_init() 465 dev->rds_ta = v4l2_ctrl_new_std(hdl, NULL, in pcm20_init() 467 dev->rds_tp = v4l2_ctrl_new_std(hdl, NULL, in pcm20_init() 469 dev->rds_ms = v4l2_ctrl_new_std(hdl, NULL, in pcm20_init() [all …]
|
D | radio-isa.c | 130 container_of(ctrl->handler, struct radio_isa_card, hdl); in radio_isa_s_ctrl() 145 v4l2_ctrl_handler_log_status(&isa->hdl, isa->v4l2_dev.name); in radio_isa_log_status() 227 v4l2_ctrl_handler_init(&isa->hdl, 1); in radio_isa_common_probe() 228 isa->mute = v4l2_ctrl_new_std(&isa->hdl, &radio_isa_ctrl_ops, in radio_isa_common_probe() 231 isa->volume = v4l2_ctrl_new_std(&isa->hdl, &radio_isa_ctrl_ops, in radio_isa_common_probe() 234 v4l2_dev->ctrl_handler = &isa->hdl; in radio_isa_common_probe() 235 if (isa->hdl.error) { in radio_isa_common_probe() 236 res = isa->hdl.error; in radio_isa_common_probe() 242 v4l2_dev->ctrl_handler = &isa->hdl; in radio_isa_common_probe() 258 res = v4l2_ctrl_handler_setup(&isa->hdl); in radio_isa_common_probe() [all …]
|
D | dsbr100.c | 78 struct v4l2_ctrl_handler hdl; member 239 container_of(ctrl->handler, struct dsbr100_device, hdl); in usb_dsbr100_s_ctrl() 314 v4l2_ctrl_handler_free(&radio->hdl); in usb_dsbr100_release() 373 v4l2_ctrl_handler_init(&radio->hdl, 1); in usb_dsbr100_probe() 374 v4l2_ctrl_new_std(&radio->hdl, &usb_dsbr100_ctrl_ops, in usb_dsbr100_probe() 376 if (radio->hdl.error) { in usb_dsbr100_probe() 377 retval = radio->hdl.error; in usb_dsbr100_probe() 388 radio->videodev.ctrl_handler = &radio->hdl; in usb_dsbr100_probe() 403 v4l2_ctrl_handler_free(&radio->hdl); in usb_dsbr100_probe()
|
D | radio-ma901.c | 86 struct v4l2_ctrl_handler hdl; member 283 container_of(ctrl->handler, struct ma901radio_device, hdl); in usb_ma901radio_s_ctrl() 336 v4l2_ctrl_handler_free(&radio->hdl); in usb_ma901radio_release() 380 v4l2_ctrl_handler_init(&radio->hdl, 1); in usb_ma901radio_probe() 390 v4l2_ctrl_new_std(&radio->hdl, &usb_ma901radio_ctrl_ops, in usb_ma901radio_probe() 394 if (radio->hdl.error) { in usb_ma901radio_probe() 395 retval = radio->hdl.error; in usb_ma901radio_probe() 401 radio->v4l2_dev.ctrl_handler = &radio->hdl; in usb_ma901radio_probe() 435 v4l2_ctrl_handler_free(&radio->hdl); in usb_ma901radio_probe()
|
D | saa7706h.c | 126 struct v4l2_ctrl_handler hdl; member 320 container_of(ctrl->handler, struct saa7706h_state, hdl); in saa7706h_s_ctrl() 362 v4l2_ctrl_handler_init(&state->hdl, 4); in saa7706h_probe() 363 v4l2_ctrl_new_std(&state->hdl, &saa7706h_ctrl_ops, in saa7706h_probe() 365 sd->ctrl_handler = &state->hdl; in saa7706h_probe() 366 err = state->hdl.error; in saa7706h_probe() 387 v4l2_ctrl_handler_free(&state->hdl); in saa7706h_probe() 402 v4l2_ctrl_handler_free(&state->hdl); in saa7706h_remove()
|
/linux-4.19.296/drivers/media/radio/si4713/ |
D | si4713.c | 1443 struct v4l2_ctrl_handler *hdl; in si4713_probe() local 1489 hdl = &sdev->ctrl_handler; in si4713_probe() 1490 v4l2_ctrl_handler_init(hdl, 20); in si4713_probe() 1491 sdev->mute = v4l2_ctrl_new_std(hdl, &si4713_ctrl_ops, in si4713_probe() 1494 sdev->rds_pi = v4l2_ctrl_new_std(hdl, &si4713_ctrl_ops, in si4713_probe() 1496 sdev->rds_pty = v4l2_ctrl_new_std(hdl, &si4713_ctrl_ops, in si4713_probe() 1498 sdev->rds_compressed = v4l2_ctrl_new_std(hdl, &si4713_ctrl_ops, in si4713_probe() 1500 sdev->rds_art_head = v4l2_ctrl_new_std(hdl, &si4713_ctrl_ops, in si4713_probe() 1502 sdev->rds_stereo = v4l2_ctrl_new_std(hdl, &si4713_ctrl_ops, in si4713_probe() 1504 sdev->rds_tp = v4l2_ctrl_new_std(hdl, &si4713_ctrl_ops, in si4713_probe() [all …]
|
/linux-4.19.296/drivers/media/usb/gspca/stv06xx/ |
D | stv06xx_st6422.c | 99 struct v4l2_ctrl_handler *hdl = &sd->gspca_dev.ctrl_handler; in st6422_init_controls() local 101 v4l2_ctrl_handler_init(hdl, 4); in st6422_init_controls() 102 v4l2_ctrl_new_std(hdl, &st6422_ctrl_ops, in st6422_init_controls() 104 v4l2_ctrl_new_std(hdl, &st6422_ctrl_ops, in st6422_init_controls() 106 v4l2_ctrl_new_std(hdl, &st6422_ctrl_ops, in st6422_init_controls() 108 v4l2_ctrl_new_std(hdl, &st6422_ctrl_ops, in st6422_init_controls() 111 return hdl->error; in st6422_init_controls()
|
D | stv06xx_pb0100.c | 117 struct v4l2_ctrl_handler *hdl = &sd->gspca_dev.ctrl_handler; in pb0100_init_controls() local 142 v4l2_ctrl_handler_init(hdl, 6); in pb0100_init_controls() 143 ctrls->autogain = v4l2_ctrl_new_std(hdl, &pb0100_ctrl_ops, in pb0100_init_controls() 145 ctrls->exposure = v4l2_ctrl_new_std(hdl, &pb0100_ctrl_ops, in pb0100_init_controls() 147 ctrls->gain = v4l2_ctrl_new_std(hdl, &pb0100_ctrl_ops, in pb0100_init_controls() 149 ctrls->red = v4l2_ctrl_new_std(hdl, &pb0100_ctrl_ops, in pb0100_init_controls() 151 ctrls->blue = v4l2_ctrl_new_std(hdl, &pb0100_ctrl_ops, in pb0100_init_controls() 153 ctrls->natural = v4l2_ctrl_new_custom(hdl, &natural_light, NULL); in pb0100_init_controls() 154 ctrls->target = v4l2_ctrl_new_custom(hdl, &autogain_target, NULL); in pb0100_init_controls() 155 if (hdl->error) { in pb0100_init_controls() [all …]
|
/linux-4.19.296/drivers/media/tuners/ |
D | msi001.c | 44 struct v4l2_ctrl_handler hdl; member 390 struct msi001_dev *dev = container_of(ctrl->handler, struct msi001_dev, hdl); in msi001_s_ctrl() 449 v4l2_ctrl_handler_init(&dev->hdl, 5); in msi001_probe() 450 dev->bandwidth_auto = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops, in msi001_probe() 452 dev->bandwidth = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops, in msi001_probe() 454 if (dev->hdl.error) { in msi001_probe() 455 ret = dev->hdl.error; in msi001_probe() 462 dev->lna_gain = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops, in msi001_probe() 464 dev->mixer_gain = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops, in msi001_probe() 466 dev->if_gain = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops, in msi001_probe() [all …]
|
D | e4000.c | 515 struct e4000_dev *dev = container_of(ctrl->handler, struct e4000_dev, hdl); in e4000_g_volatile_ctrl() 537 struct e4000_dev *dev = container_of(ctrl->handler, struct e4000_dev, hdl); in e4000_s_ctrl() 672 v4l2_ctrl_handler_init(&dev->hdl, 9); in e4000_probe() 673 dev->bandwidth_auto = v4l2_ctrl_new_std(&dev->hdl, &e4000_ctrl_ops, in e4000_probe() 675 dev->bandwidth = v4l2_ctrl_new_std(&dev->hdl, &e4000_ctrl_ops, in e4000_probe() 678 dev->lna_gain_auto = v4l2_ctrl_new_std(&dev->hdl, &e4000_ctrl_ops, in e4000_probe() 680 dev->lna_gain = v4l2_ctrl_new_std(&dev->hdl, &e4000_ctrl_ops, in e4000_probe() 683 dev->mixer_gain_auto = v4l2_ctrl_new_std(&dev->hdl, &e4000_ctrl_ops, in e4000_probe() 685 dev->mixer_gain = v4l2_ctrl_new_std(&dev->hdl, &e4000_ctrl_ops, in e4000_probe() 688 dev->if_gain_auto = v4l2_ctrl_new_std(&dev->hdl, &e4000_ctrl_ops, in e4000_probe() [all …]
|
/linux-4.19.296/drivers/media/usb/gspca/m5602/ |
D | m5602_ov7660.c | 279 struct v4l2_ctrl_handler *hdl = &sd->gspca_dev.ctrl_handler; in ov7660_init_controls() local 281 sd->gspca_dev.vdev.ctrl_handler = hdl; in ov7660_init_controls() 282 v4l2_ctrl_handler_init(hdl, 6); in ov7660_init_controls() 284 v4l2_ctrl_new_std(hdl, &ov7660_ctrl_ops, V4L2_CID_AUTO_WHITE_BALANCE, in ov7660_init_controls() 286 v4l2_ctrl_new_std_menu(hdl, &ov7660_ctrl_ops, in ov7660_init_controls() 289 sd->autogain = v4l2_ctrl_new_std(hdl, &ov7660_ctrl_ops, in ov7660_init_controls() 291 sd->gain = v4l2_ctrl_new_std(hdl, &ov7660_ctrl_ops, V4L2_CID_GAIN, 0, in ov7660_init_controls() 294 sd->hflip = v4l2_ctrl_new_std(hdl, &ov7660_ctrl_ops, V4L2_CID_HFLIP, in ov7660_init_controls() 296 sd->vflip = v4l2_ctrl_new_std(hdl, &ov7660_ctrl_ops, V4L2_CID_VFLIP, in ov7660_init_controls() 299 if (hdl->error) { in ov7660_init_controls() [all …]
|
D | m5602_po1030.c | 243 struct v4l2_ctrl_handler *hdl = &sd->gspca_dev.ctrl_handler; in po1030_init_controls() local 245 sd->gspca_dev.vdev.ctrl_handler = hdl; in po1030_init_controls() 246 v4l2_ctrl_handler_init(hdl, 9); in po1030_init_controls() 248 sd->auto_white_bal = v4l2_ctrl_new_std(hdl, &po1030_ctrl_ops, in po1030_init_controls() 251 sd->green_bal = v4l2_ctrl_new_custom(hdl, &po1030_greenbal_cfg, NULL); in po1030_init_controls() 252 sd->red_bal = v4l2_ctrl_new_std(hdl, &po1030_ctrl_ops, in po1030_init_controls() 255 sd->blue_bal = v4l2_ctrl_new_std(hdl, &po1030_ctrl_ops, in po1030_init_controls() 259 sd->autoexpo = v4l2_ctrl_new_std_menu(hdl, &po1030_ctrl_ops, in po1030_init_controls() 261 sd->expo = v4l2_ctrl_new_std(hdl, &po1030_ctrl_ops, V4L2_CID_EXPOSURE, in po1030_init_controls() 264 sd->gain = v4l2_ctrl_new_std(hdl, &po1030_ctrl_ops, V4L2_CID_GAIN, 0, in po1030_init_controls() [all …]
|
D | m5602_mt9m111.c | 276 struct v4l2_ctrl_handler *hdl = &sd->gspca_dev.ctrl_handler; in mt9m111_init_controls() local 278 sd->gspca_dev.vdev.ctrl_handler = hdl; in mt9m111_init_controls() 279 v4l2_ctrl_handler_init(hdl, 7); in mt9m111_init_controls() 281 sd->auto_white_bal = v4l2_ctrl_new_std(hdl, &mt9m111_ctrl_ops, in mt9m111_init_controls() 284 sd->green_bal = v4l2_ctrl_new_custom(hdl, &mt9m111_greenbal_cfg, NULL); in mt9m111_init_controls() 285 sd->red_bal = v4l2_ctrl_new_std(hdl, &mt9m111_ctrl_ops, in mt9m111_init_controls() 288 sd->blue_bal = v4l2_ctrl_new_std(hdl, &mt9m111_ctrl_ops, in mt9m111_init_controls() 292 v4l2_ctrl_new_std(hdl, &mt9m111_ctrl_ops, V4L2_CID_GAIN, 0, in mt9m111_init_controls() 296 sd->hflip = v4l2_ctrl_new_std(hdl, &mt9m111_ctrl_ops, V4L2_CID_HFLIP, in mt9m111_init_controls() 298 sd->vflip = v4l2_ctrl_new_std(hdl, &mt9m111_ctrl_ops, V4L2_CID_VFLIP, in mt9m111_init_controls() [all …]
|
D | m5602_ov9650.c | 371 struct v4l2_ctrl_handler *hdl = &sd->gspca_dev.ctrl_handler; in ov9650_init_controls() local 373 sd->gspca_dev.vdev.ctrl_handler = hdl; in ov9650_init_controls() 374 v4l2_ctrl_handler_init(hdl, 9); in ov9650_init_controls() 376 sd->auto_white_bal = v4l2_ctrl_new_std(hdl, &ov9650_ctrl_ops, in ov9650_init_controls() 379 sd->red_bal = v4l2_ctrl_new_std(hdl, &ov9650_ctrl_ops, in ov9650_init_controls() 382 sd->blue_bal = v4l2_ctrl_new_std(hdl, &ov9650_ctrl_ops, in ov9650_init_controls() 386 sd->autoexpo = v4l2_ctrl_new_std_menu(hdl, &ov9650_ctrl_ops, in ov9650_init_controls() 388 sd->expo = v4l2_ctrl_new_std(hdl, &ov9650_ctrl_ops, V4L2_CID_EXPOSURE, in ov9650_init_controls() 391 sd->autogain = v4l2_ctrl_new_std(hdl, &ov9650_ctrl_ops, in ov9650_init_controls() 393 sd->gain = v4l2_ctrl_new_std(hdl, &ov9650_ctrl_ops, V4L2_CID_GAIN, 0, in ov9650_init_controls() [all …]
|
D | m5602_s5k83a.c | 267 struct v4l2_ctrl_handler *hdl = &sd->gspca_dev.ctrl_handler; in s5k83a_init_controls() local 269 sd->gspca_dev.vdev.ctrl_handler = hdl; in s5k83a_init_controls() 270 v4l2_ctrl_handler_init(hdl, 6); in s5k83a_init_controls() 272 v4l2_ctrl_new_std(hdl, &s5k83a_ctrl_ops, V4L2_CID_BRIGHTNESS, in s5k83a_init_controls() 275 v4l2_ctrl_new_std(hdl, &s5k83a_ctrl_ops, V4L2_CID_EXPOSURE, in s5k83a_init_controls() 279 v4l2_ctrl_new_std(hdl, &s5k83a_ctrl_ops, V4L2_CID_GAIN, in s5k83a_init_controls() 282 sd->hflip = v4l2_ctrl_new_std(hdl, &s5k83a_ctrl_ops, V4L2_CID_HFLIP, in s5k83a_init_controls() 284 sd->vflip = v4l2_ctrl_new_std(hdl, &s5k83a_ctrl_ops, V4L2_CID_VFLIP, in s5k83a_init_controls() 287 if (hdl->error) { in s5k83a_init_controls() 289 return hdl->error; in s5k83a_init_controls()
|
/linux-4.19.296/drivers/media/dvb-frontends/ |
D | au8522_decoder.c | 448 container_of(ctrl->handler, struct au8522_state, hdl); in au8522_s_ctrl() 685 struct v4l2_ctrl_handler *hdl; in au8522_probe() local 735 hdl = &state->hdl; in au8522_probe() 736 v4l2_ctrl_handler_init(hdl, 4); in au8522_probe() 737 v4l2_ctrl_new_std(hdl, &au8522_ctrl_ops, in au8522_probe() 739 v4l2_ctrl_new_std(hdl, &au8522_ctrl_ops, in au8522_probe() 742 v4l2_ctrl_new_std(hdl, &au8522_ctrl_ops, in au8522_probe() 744 v4l2_ctrl_new_std(hdl, &au8522_ctrl_ops, in au8522_probe() 746 sd->ctrl_handler = hdl; in au8522_probe() 747 if (hdl->error) { in au8522_probe() [all …]
|
/linux-4.19.296/drivers/media/usb/gspca/ |
D | tv8532.c | 316 struct v4l2_ctrl_handler *hdl = &gspca_dev->ctrl_handler; in sd_init_controls() local 318 gspca_dev->vdev.ctrl_handler = hdl; in sd_init_controls() 319 v4l2_ctrl_handler_init(hdl, 2); in sd_init_controls() 320 v4l2_ctrl_new_std(hdl, &sd_ctrl_ops, in sd_init_controls() 322 v4l2_ctrl_new_std(hdl, &sd_ctrl_ops, in sd_init_controls() 325 if (hdl->error) { in sd_init_controls() 327 return hdl->error; in sd_init_controls()
|
D | spca508.c | 1478 struct v4l2_ctrl_handler *hdl = &gspca_dev->ctrl_handler; in sd_init_controls() local 1480 gspca_dev->vdev.ctrl_handler = hdl; in sd_init_controls() 1481 v4l2_ctrl_handler_init(hdl, 5); in sd_init_controls() 1482 v4l2_ctrl_new_std(hdl, &sd_ctrl_ops, in sd_init_controls() 1485 if (hdl->error) { in sd_init_controls() 1487 return hdl->error; in sd_init_controls()
|
/linux-4.19.296/drivers/media/common/saa7146/ |
D | saa7146_fops.c | 469 struct v4l2_ctrl_handler *hdl = &dev->ctrl_handler; in saa7146_vv_init() local 479 v4l2_ctrl_handler_init(hdl, 6); in saa7146_vv_init() 480 v4l2_ctrl_new_std(hdl, &saa7146_ctrl_ops, in saa7146_vv_init() 482 v4l2_ctrl_new_std(hdl, &saa7146_ctrl_ops, in saa7146_vv_init() 484 v4l2_ctrl_new_std(hdl, &saa7146_ctrl_ops, in saa7146_vv_init() 486 v4l2_ctrl_new_std(hdl, &saa7146_ctrl_ops, in saa7146_vv_init() 488 v4l2_ctrl_new_std(hdl, &saa7146_ctrl_ops, in saa7146_vv_init() 490 if (hdl->error) { in saa7146_vv_init() 491 err = hdl->error; in saa7146_vv_init() 492 v4l2_ctrl_handler_free(hdl); in saa7146_vv_init() [all …]
|
/linux-4.19.296/include/media/drv-intf/ |
D | cx2341x.h | 108 int (*s_audio_sampling_freq)(struct cx2341x_handler *hdl, u32 val); 110 int (*s_audio_mode)(struct cx2341x_handler *hdl, u32 val); 112 int (*s_video_encoding)(struct cx2341x_handler *hdl, u32 val); 114 int (*s_stream_vbi_fmt)(struct cx2341x_handler *hdl, u32 val); 125 struct v4l2_ctrl_handler hdl; member
|