diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2002-11-13 12:35:56 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2002-11-13 12:35:56 +0000 |
commit | 851ddec4d5fc85b7bfaaf3b318c0d3e088794f7a (patch) | |
tree | 6b8535de35777baf149b2a75f5f5648b48c60d23 /sys/v4l2/gstv4l2src.h | |
parent | 15e3ef0e55d190aca25d0501a159e7d930ca4679 (diff) | |
download | gst-plugins-bad-851ddec4d5fc85b7bfaaf3b318c0d3e088794f7a.tar.gz gst-plugins-bad-851ddec4d5fc85b7bfaaf3b318c0d3e088794f7a.tar.bz2 gst-plugins-bad-851ddec4d5fc85b7bfaaf3b318c0d3e088794f7a.zip |
v4l plugins: add open/close signals v4l2 plugins: add open/close signals move source format enumeration from v4l2elem...
Original commit message from CVS:
v4l plugins:
* add open/close signals
v4l2 plugins:
* add open/close signals
* move source format enumeration from v4l2element to v4l2src
* adapt to the final v4l2 API in kernel 2.5 (patches for 2.4 on http://bytesex.org/patches)
* small tweaks
Diffstat (limited to 'sys/v4l2/gstv4l2src.h')
-rw-r--r-- | sys/v4l2/gstv4l2src.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/v4l2/gstv4l2src.h b/sys/v4l2/gstv4l2src.h index 004347ab..d287076b 100644 --- a/sys/v4l2/gstv4l2src.h +++ b/sys/v4l2/gstv4l2src.h @@ -44,11 +44,14 @@ struct _GstV4l2Src { /* pads */ GstPad *srcpad; + /* internal lists */ + GList /*v4l2_fmtdesc*/ *formats; /* list of available capture formats */ + /* buffer properties */ struct v4l2_buffer bufsettings; struct v4l2_requestbuffers breq; struct v4l2_format format; - stamp_t first_timestamp; + guint64 first_timestamp; /* bufferpool for the buffers we're gonna use */ GstBufferPool *bufferpool; |