aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/videodev2.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/videodev2.h b/include/linux/videodev2.h
index b06479f63271..957d5b093847 100644
--- a/include/linux/videodev2.h
+++ b/include/linux/videodev2.h
@@ -397,6 +397,14 @@ struct v4l2_frmsize_discrete {
397 __u32 height; /* Frame height [pixel] */ 397 __u32 height; /* Frame height [pixel] */
398}; 398};
399 399
400struct v4l2_discrete_probe {
401 const struct v4l2_frmsize_discrete *sizes;
402 int num_sizes;
403};
404
405struct v4l2_frmsize_discrete *v4l2_find_nearest_format(struct v4l2_discrete_probe *probe,
406 s32 width, s32 height);
407
400struct v4l2_frmsize_stepwise { 408struct v4l2_frmsize_stepwise {
401 __u32 min_width; /* Minimum frame width [pixel] */ 409 __u32 min_width; /* Minimum frame width [pixel] */
402 __u32 max_width; /* Maximum frame width [pixel] */ 410 __u32 max_width; /* Maximum frame width [pixel] */