Commit f13a9ca9 authored by Janne Grunau's avatar Janne Grunau

v4l2: use V4L2_FMT_FLAG_EMULATED only if it is defined

V4L2_FMT_FLAG_EMULATED was added in 2.6.32.
parent e8c04f62
...@@ -316,10 +316,12 @@ static void list_formats(AVFormatContext *ctx, int fd, int type) ...@@ -316,10 +316,12 @@ static void list_formats(AVFormatContext *ctx, int fd, int type)
continue; continue;
} }
#ifdef V4L2_FMT_FLAG_EMULATED
if (vfd.flags & V4L2_FMT_FLAG_EMULATED) { if (vfd.flags & V4L2_FMT_FLAG_EMULATED) {
av_log(ctx, AV_LOG_WARNING, "%s", "Emulated"); av_log(ctx, AV_LOG_WARNING, "%s", "Emulated");
continue; continue;
} }
#endif
#if HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE #if HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE
list_framesizes(ctx, fd, vfd.pixelformat); list_framesizes(ctx, fd, vfd.pixelformat);
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment