diff options
Diffstat (limited to 'sys/dev/video_if.h')
-rw-r--r-- | sys/dev/video_if.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/video_if.h b/sys/dev/video_if.h index 69ff3174164..ea8836aa61a 100644 --- a/sys/dev/video_if.h +++ b/sys/dev/video_if.h @@ -1,4 +1,4 @@ -/* $OpenBSD: video_if.h,v 1.14 2008/07/31 15:26:25 mglocker Exp $ */ +/* $OpenBSD: video_if.h,v 1.15 2008/08/13 20:29:34 mglocker Exp $ */ /* * Copyright (c) 2008 Robert Nagy <robert@openbsd.org> * Copyright (c) 2008 Marcus Glocker <mglocker@openbsd.org> @@ -36,6 +36,8 @@ struct video_hw_if { /* ioctl's */ int (*querycap)(void *, struct v4l2_capability *); int (*enum_fmt)(void *, struct v4l2_fmtdesc *); + int (*enum_fsizes)(void *, struct v4l2_frmsizeenum *); + int (*enum_fivals)(void *, struct v4l2_frmivalenum *); int (*s_fmt)(void *, struct v4l2_format *); int (*g_fmt)(void *, struct v4l2_format *); int (*enum_input)(void *, struct v4l2_input *); |