Lines Matching +full:input +full:- +full:colorspace
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * v4l2-dv-timings - Internal header with dv-timings helper functions
15 * v4l2_calc_timeperframe - helper function to calculate timeperframe based
31 * typedef v4l2_check_dv_timings_fnc - timings check callback
41 * v4l2_valid_dv_timings() - are these timings valid?
49 * hardware capabilities and the callback function (if non-NULL), returns
58 * v4l2_enum_dv_timings_cap() - Helper function to enumerate possible DV
66 * This enumerates dv_timings using the full list of possible CEA-861 and DMT
68 * hardware capabilities and the callback function (if non-NULL).
71 * return 0, otherwise it returns -EINVAL.
79 * v4l2_find_dv_timings_cap() - Find the closest timings struct
83 * @pclock_delta: maximum delta between t->pixelclock and the timing struct
89 * full list of possible CEA-861 and DMT timings, filtering out any timings
91 * function (if non-NULL).
103 * v4l2_find_dv_timings_cea861_vic() - find timings based on CEA-861 VIC
105 * @vic: CEA-861 VIC code
113 * v4l2_match_dv_timings() - do two timings match?
117 * @pclock_delta: maximum delta in Hz between standard->pixelclock and
129 * v4l2_print_dv_timings() - log the contents of a dv_timings struct
139 * v4l2_detect_cvt - detect if the given timings follow the CVT standard
164 * v4l2_detect_gtf - detect if the given timings follow the GTF standard
191 * v4l2_calc_aspect_ratio - calculate the aspect ratio based on bytes
204 * v4l2_dv_timings_aspect_ratio - calculate the aspect ratio based on the
212 * can_reduce_fps - check if conditions for reduced fps are true.
218 * - For CVT timings: if reduced blanking v2 (vsync == 8) is true.
219 * - For CEA861 timings: if %V4L2_DV_FL_CAN_REDUCE_FPS flag is true.
223 if ((bt->standards & V4L2_DV_BT_STD_CVT) && (bt->vsync == 8)) in can_reduce_fps()
226 if ((bt->standards & V4L2_DV_BT_STD_CEA861) && in can_reduce_fps()
227 (bt->flags & V4L2_DV_FL_CAN_REDUCE_FPS)) in can_reduce_fps()
234 * struct v4l2_hdmi_colorimetry - describes the HDMI colorimetry information
235 * @colorspace: enum v4l2_colorspace, the colorspace
237 * @quantization: enum v4l2_quantization, colorspace quantization
238 * @xfer_func: enum v4l2_xfer_func, colorspace transfer function
241 enum v4l2_colorspace colorspace; member
258 u16 v4l2_phys_addr_for_input(u16 phys_addr, u8 input);