Lines Matching refs:v4l2_ctrl_new_std

121 You add non-menu controls by calling v4l2_ctrl_new_std:
123 struct v4l2_ctrl *v4l2_ctrl_new_std(struct v4l2_ctrl_handler *hdl,
161 v4l2_ctrl_new_std(&foo->ctrl_handler, &foo_ctrl_ops,
163 v4l2_ctrl_new_std(&foo->ctrl_handler, &foo_ctrl_ops,
185 The v4l2_ctrl_new_std function returns the v4l2_ctrl pointer to the new
189 The v4l2_ctrl_new_std function will fill in most fields based on the control
353 ctrl = v4l2_ctrl_new_std(&sd->ctrl_handler, ...);
479 v4l2_ctrl_new_std(&state->ctrl_handler, ...);
481 v4l2_ctrl_new_std(&state->ctrl_handler, ...);
528 state->volume = v4l2_ctrl_new_std(&state->ctrl_handler, ...);
529 state->mute = v4l2_ctrl_new_std(&state->ctrl_handler, ...);
635 v4l2_ctrl_new_std(&radio_ctrl_handler, &radio_ops, V4L2_CID_AUDIO_VOLUME, ...);
636 v4l2_ctrl_new_std(&radio_ctrl_handler, &radio_ops, V4L2_CID_AUDIO_MUTE, ...);
637 v4l2_ctrl_new_std(&video_ctrl_handler, &video_ops, V4L2_CID_BRIGHTNESS, ...);
638 v4l2_ctrl_new_std(&video_ctrl_handler, &video_ops, V4L2_CID_CONTRAST, ...);
647 volume = v4l2_ctrl_new_std(&video_ctrl_handler, &ops, V4L2_CID_AUDIO_VOLUME, ...);
648 v4l2_ctrl_new_std(&video_ctrl_handler, &ops, V4L2_CID_BRIGHTNESS, ...);
649 v4l2_ctrl_new_std(&video_ctrl_handler, &ops, V4L2_CID_CONTRAST, ...);
655 v4l2_ctrl_new_std(&radio_ctrl_handler, &radio_ops, V4L2_CID_AUDIO_MUTE, ...);
656 v4l2_ctrl_new_std(&video_ctrl_handler, &video_ops, V4L2_CID_AUDIO_MUTE, ...);
683 v4l2_ctrl_new_std(&ctrl_handler, &video_ops, V4L2_CID_BRIGHTNESS, ...);
684 v4l2_ctrl_new_std(&ctrl_handler, &video_ops, V4L2_CID_CONTRAST, ...);