diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2010-08-27 12:41:44 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-10-20 23:06:18 -0400 |
commit | 79c6ff93c74e793ccceb464ee3698478c812ce79 (patch) | |
tree | 9750ba1a7d14619e8e74449513af0a31ccf8c803 /include/linux/videodev2.h | |
parent | 45f4d4e8799ff1d7ef72747203935f1f2533743d (diff) |
V4L/DVB: V4L2: add a generic function to find the nearest discrete format to the required one
Many video drivers implement a fixed set of frame formats and thus face a task
of finding the best match for a user-requested format. Implementing this in a
generic function has also an advantage, that different drivers with similar
supported format sets will select the same format for the user, which improves
consistency across drivers.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/linux/videodev2.h')
-rw-r--r-- | include/linux/videodev2.h | 8 |
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 | ||
400 | struct v4l2_discrete_probe { | ||
401 | const struct v4l2_frmsize_discrete *sizes; | ||
402 | int num_sizes; | ||
403 | }; | ||
404 | |||
405 | struct v4l2_frmsize_discrete *v4l2_find_nearest_format(struct v4l2_discrete_probe *probe, | ||
406 | s32 width, s32 height); | ||
407 | |||
400 | struct v4l2_frmsize_stepwise { | 408 | struct 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] */ |