mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 09:02:20 +00:00
v4l2: use V4L2_FMT_FLAG_EMULATED only if it is defined
V4L2_FMT_FLAG_EMULATED was added in 2.6.32.
This commit is contained in:
parent
e8c04f6240
commit
f13a9ca906
@ -316,10 +316,12 @@ static void list_formats(AVFormatContext *ctx, int fd, int type)
|
||||
continue;
|
||||
}
|
||||
|
||||
#ifdef V4L2_FMT_FLAG_EMULATED
|
||||
if (vfd.flags & V4L2_FMT_FLAG_EMULATED) {
|
||||
av_log(ctx, AV_LOG_WARNING, "%s", "Emulated");
|
||||
continue;
|
||||
}
|
||||
#endif
|
||||
#if HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE
|
||||
list_framesizes(ctx, fd, vfd.pixelformat);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user