diff options
author | Edgard Lima <edgard.lima@indt.org.br> | 2006-08-24 00:40:07 +0000 |
---|---|---|
committer | Edgard Lima <edgard.lima@indt.org.br> | 2006-08-24 00:40:07 +0000 |
commit | a411f9e71ac0f023218be100081395c8bbed88fd (patch) | |
tree | 3273f49c005b4219fcb45404c590402c264485d2 /sys/v4l2/v4l2src_calls.h | |
parent | 2d7cf5f38549d6e18f124e3171c8687640b3eb35 (diff) | |
download | gst-plugins-bad-a411f9e71ac0f023218be100081395c8bbed88fd.tar.gz gst-plugins-bad-a411f9e71ac0f023218be100081395c8bbed88fd.tar.bz2 gst-plugins-bad-a411f9e71ac0f023218be100081395c8bbed88fd.zip |
Fix set_caps to set width and height to the values the driver is really working with.
Original commit message from CVS:
Fix set_caps to set width and height to the values the driver is really working with.
Diffstat (limited to 'sys/v4l2/v4l2src_calls.h')
-rw-r--r-- | sys/v4l2/v4l2src_calls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/v4l2/v4l2src_calls.h b/sys/v4l2/v4l2src_calls.h index 51d871ff..4b5a3871 100644 --- a/sys/v4l2/v4l2src_calls.h +++ b/sys/v4l2/v4l2src_calls.h @@ -28,7 +28,7 @@ gboolean gst_v4l2src_get_capture (GstV4l2Src * v4l2src); gboolean gst_v4l2src_set_capture (GstV4l2Src * v4l2src, struct v4l2_fmtdesc *fmt, - gint width, gint height); + gint * width, gint * height); gboolean gst_v4l2src_capture_init (GstV4l2Src * v4l2src); gboolean gst_v4l2src_capture_start (GstV4l2Src * v4l2src); gint gst_v4l2src_grab_frame (GstV4l2Src * v4l2src); |