diff options
| author | Hans Verkuil <hverkuil@xs4all.nl> | 2010-09-30 08:29:37 -0400 |
|---|---|---|
| committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-10-20 23:06:19 -0400 |
| commit | 3fd8e647eaa76a1eb5bdd0fcecf49364a089b71d (patch) | |
| tree | 262fec3628c13f004a49477fc19cc1ff20c12521 | |
| parent | e3cfd447d01cf723ccda0ad6bfa2e85b73d3d747 (diff) | |
V4L/DVB: v4l2-common: Move v4l2_find_nearest_format from videodev2.h to v4l2-common.h
This function is an internal API and belongs in v4l2-common.h, not
videodev.h. The return pointer and probe argument should be const as well.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
| -rw-r--r-- | drivers/media/video/v4l2-common.c | 7 | ||||
| -rw-r--r-- | include/linux/videodev2.h | 8 | ||||
| -rw-r--r-- | include/media/v4l2-common.h | 10 |
3 files changed, 14 insertions, 11 deletions
diff --git a/drivers/media/video/v4l2-common.c b/drivers/media/video/v4l2-common.c index 31ae1a138613..cef80dab1a0d 100644 --- a/drivers/media/video/v4l2-common.c +++ b/drivers/media/video/v4l2-common.c | |||
| @@ -677,12 +677,13 @@ int v4l_fill_dv_preset_info(u32 preset, struct v4l2_dv_enum_preset *info) | |||
| 677 | } | 677 | } |
| 678 | EXPORT_SYMBOL_GPL(v4l_fill_dv_preset_info); | 678 | EXPORT_SYMBOL_GPL(v4l_fill_dv_preset_info); |
| 679 | 679 | ||
| 680 | struct v4l2_frmsize_discrete *v4l2_find_nearest_format(struct v4l2_discrete_probe *probe, | 680 | const struct v4l2_frmsize_discrete *v4l2_find_nearest_format( |
| 681 | s32 width, s32 height) | 681 | const struct v4l2_discrete_probe *probe, |
| 682 | s32 width, s32 height) | ||
| 682 | { | 683 | { |
| 683 | int i; | 684 | int i; |
| 684 | u32 error, min_error = UINT_MAX; | 685 | u32 error, min_error = UINT_MAX; |
| 685 | struct v4l2_frmsize_discrete *size, *best = NULL; | 686 | const struct v4l2_frmsize_discrete *size, *best = NULL; |
| 686 | 687 | ||
| 687 | if (!probe) | 688 | if (!probe) |
| 688 | return best; | 689 | return best; |
diff --git a/include/linux/videodev2.h b/include/linux/videodev2.h index 957d5b093847..b06479f63271 100644 --- a/include/linux/videodev2.h +++ b/include/linux/videodev2.h | |||
| @@ -397,14 +397,6 @@ 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 | |||
| 408 | struct v4l2_frmsize_stepwise { | 400 | struct v4l2_frmsize_stepwise { |
| 409 | __u32 min_width; /* Minimum frame width [pixel] */ | 401 | __u32 min_width; /* Minimum frame width [pixel] */ |
| 410 | __u32 max_width; /* Maximum frame width [pixel] */ | 402 | __u32 max_width; /* Maximum frame width [pixel] */ |
diff --git a/include/media/v4l2-common.h b/include/media/v4l2-common.h index 98b32645e5a7..41dd480e45f1 100644 --- a/include/media/v4l2-common.h +++ b/include/media/v4l2-common.h | |||
| @@ -232,4 +232,14 @@ void v4l_bound_align_image(unsigned int *w, unsigned int wmin, | |||
| 232 | unsigned int hmax, unsigned int halign, | 232 | unsigned int hmax, unsigned int halign, |
| 233 | unsigned int salign); | 233 | unsigned int salign); |
| 234 | int v4l_fill_dv_preset_info(u32 preset, struct v4l2_dv_enum_preset *info); | 234 | int v4l_fill_dv_preset_info(u32 preset, struct v4l2_dv_enum_preset *info); |
| 235 | |||
| 236 | struct v4l2_discrete_probe { | ||
| 237 | const struct v4l2_frmsize_discrete *sizes; | ||
| 238 | int num_sizes; | ||
| 239 | }; | ||
| 240 | |||
| 241 | const struct v4l2_frmsize_discrete *v4l2_find_nearest_format( | ||
| 242 | const struct v4l2_discrete_probe *probe, | ||
| 243 | s32 width, s32 height); | ||
| 244 | |||
| 235 | #endif /* V4L2_COMMON_H_ */ | 245 | #endif /* V4L2_COMMON_H_ */ |
