From c5f43c8888400f5fab6f7d2ad27e961e8d2616a5 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer <michaelni@gmx.at> Date: Mon, 18 Aug 2014 13:53:55 +0200 Subject: [PATCH] avdevice/v4l2: try to fix build for openbsd Found-by: carl Signed-off-by: Michael Niedermayer <michaelni@gmx.at> --- libavdevice/v4l2.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c index e1a4d233432..9f9f9442b07 100644 --- a/libavdevice/v4l2.c +++ b/libavdevice/v4l2.c @@ -688,7 +688,11 @@ static int v4l2_set_parameters(AVFormatContext *s1) standard.index = i; if (v4l2_ioctl(s->fd, VIDIOC_ENUMSTD, &standard) < 0) { ret = AVERROR(errno); - if (ret == AVERROR(EINVAL) || ret == AVERROR(ENODATA)) { + if (ret == AVERROR(EINVAL) +#ifdef ENODATA + || ret == AVERROR(ENODATA) +#endif + ) { tpf = &streamparm.parm.capture.timeperframe; break; } -- GitLab