diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-09-03 20:40:17 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-09-03 20:40:17 +0200 |
commit | 0c6fba9506660b3857c8857cbe690adff1ea84e4 (patch) | |
tree | 2e3492873b5e041f8b7a6e946dae5d6713ebf1e1 /sys | |
parent | 4fda384a83346d6056c34f409412a9c40e294433 (diff) |
v4l2: Fix stupid typo in last commit
Diffstat (limited to 'sys')
-rw-r--r-- | sys/v4l2/gstv4l2object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/v4l2/gstv4l2object.c b/sys/v4l2/gstv4l2object.c index c9227d0c..cae86cef 100644 --- a/sys/v4l2/gstv4l2object.c +++ b/sys/v4l2/gstv4l2object.c @@ -724,7 +724,7 @@ gst_v4l2_object_format_get_rank (const struct v4l2_fmtdesc *fmt) { guint32 fourcc = fmt->pixelformat; #ifdef V4L2_FMT_FLAG_EMULATED - gboolean emulated = ((flags & V4L2_FMT_FLAG_EMULATED) != 0); + gboolean emulated = ((fmt->flags & V4L2_FMT_FLAG_EMULATED) != 0); #else gboolean emulated = FALSE; #endif |