Index: head/multimedia/gstreamer1-plugins-good/files/patch-sys_v4l2_gstv4l2object.c =================================================================== --- head/multimedia/gstreamer1-plugins-good/files/patch-sys_v4l2_gstv4l2object.c (nonexistent) +++ head/multimedia/gstreamer1-plugins-good/files/patch-sys_v4l2_gstv4l2object.c (revision 534176) @@ -0,0 +1,13 @@ +--- sys/v4l2/gstv4l2object.c.orig 2020-04-06 14:45:19 UTC ++++ sys/v4l2/gstv4l2object.c +@@ -2891,8 +2891,9 @@ gst_v4l2_object_is_dmabuf_supported (GstV4l2Object * v + } + + /* Expected to fail, but ENOTTY tells us that it is not implemented. */ ++ /* FreeBSD cuse sends EINVAL? */ + v4l2object->ioctl (v4l2object->video_fd, VIDIOC_EXPBUF, &expbuf); +- if (errno == ENOTTY) ++ if (errno == ENOTTY || errno == EINVAL) + ret = FALSE; + + return ret; Property changes on: head/multimedia/gstreamer1-plugins-good/files/patch-sys_v4l2_gstv4l2object.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/multimedia/gstreamer1-plugins-v4l2/Makefile =================================================================== --- head/multimedia/gstreamer1-plugins-v4l2/Makefile (revision 534175) +++ head/multimedia/gstreamer1-plugins-v4l2/Makefile (revision 534176) @@ -1,14 +1,14 @@ # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= multimedia PKGNAMESUFFIX= 1-plugins-v4l2 COMMENT= GStreamer Video 4 Linux 2 source plugin GST_PLUGIN= gst_v4l2 DIST= good MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins .include "${MASTERDIR}/Makefile"