mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
v4l2: Fix stupid typo in last commit
This commit is contained in:
parent
4fda384a83
commit
0c6fba9506
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue