Disable all libv4l2 emulated formats with V4L2_DISABLE_CONVERSION.

We get several emulated formats enumerated as supported, e.g. RGB,
from libv4l2. These are too inefficient to use in any real world
use case vs. using videoconvert on the CPU with ORC, or glfilterbin
on the GPU. With this change only the natively supported formats
will be enumerated, same as:
v4l2-ctl --list-formats-ext

Change-Id: If56c9f2f7be122e42f7a9729d60450eb8a127fb8
diff --git a/sys/v4l2/v4l2_calls.c b/sys/v4l2/v4l2_calls.c
index da5e7e9..fd89406 100644
--- a/sys/v4l2/v4l2_calls.c
+++ b/sys/v4l2/v4l2_calls.c
@@ -545,7 +545,7 @@
     goto not_open;
 
   libv4l2_fd = v4l2_fd_open (v4l2object->video_fd,
-      V4L2_ENABLE_ENUM_FMT_EMULATION);
+      V4L2_DISABLE_CONVERSION);
   /* Note the v4l2_xxx functions are designed so that if they get passed an
      unknown fd, the will behave exactly as their regular xxx counterparts, so
      if v4l2_fd_open fails, we continue as normal (missing the libv4l2 custom