diff options
author | Stephan Lachowsky <stephan.lachowsky@maxim-ic.com> | 2011-01-27 21:04:33 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-03-22 05:51:05 -0400 |
commit | 38a66824d96de8aeeb915e6f46f0d3fe55828eb1 (patch) | |
tree | ef9943c22ecdb264afabe001f3151ca72bde06b5 | |
parent | 5db2c3ba4de8489a7a064bac463bb8af2c7a1ae4 (diff) |
[media] uvcvideo: Fix uvc_fixup_video_ctrl() format search
The scheme used to index format in uvc_fixup_video_ctrl() is not robust:
format index is based on descriptor ordering, which does not necessarily
match bFormatIndex ordering. Searching for first matching format will
prevent uvc_fixup_video_ctrl() from using the wrong format/frame to make
adjustments.
Signed-off-by: Stephan Lachowsky <stephan.lachowsky@maxim-ic.com>
Cc: stable@kernel.org
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/video/uvc/uvc_video.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/drivers/media/video/uvc/uvc_video.c b/drivers/media/video/uvc/uvc_video.c index 5673d673504b..545c0294813d 100644 --- a/drivers/media/video/uvc/uvc_video.c +++ b/drivers/media/video/uvc/uvc_video.c | |||
@@ -89,15 +89,19 @@ int uvc_query_ctrl(struct uvc_device *dev, __u8 query, __u8 unit, | |||
89 | static void uvc_fixup_video_ctrl(struct uvc_streaming *stream, | 89 | static void uvc_fixup_video_ctrl(struct uvc_streaming *stream, |
90 | struct uvc_streaming_control *ctrl) | 90 | struct uvc_streaming_control *ctrl) |
91 | { | 91 | { |
92 | struct uvc_format *format; | 92 | struct uvc_format *format = NULL; |
93 | struct uvc_frame *frame = NULL; | 93 | struct uvc_frame *frame = NULL; |
94 | unsigned int i; | 94 | unsigned int i; |
95 | 95 | ||
96 | if (ctrl->bFormatIndex <= 0 || | 96 | for (i = 0; i < stream->nformats; ++i) { |
97 | ctrl->bFormatIndex > stream->nformats) | 97 | if (stream->format[i].index == ctrl->bFormatIndex) { |
98 | return; | 98 | format = &stream->format[i]; |
99 | break; | ||
100 | } | ||
101 | } | ||
99 | 102 | ||
100 | format = &stream->format[ctrl->bFormatIndex - 1]; | 103 | if (format == NULL) |
104 | return; | ||
101 | 105 | ||
102 | for (i = 0; i < format->nframes; ++i) { | 106 | for (i = 0; i < format->nframes; ++i) { |
103 | if (format->frame[i].bFrameIndex == ctrl->bFrameIndex) { | 107 | if (format->frame[i].bFrameIndex == ctrl->bFrameIndex) { |