diff options
| author | Vineet Kumar <git@vineetk.net> | 2026-06-15 14:54:51 -0400 |
|---|---|---|
| committer | Vineet Kumar <git@vineetk.net> | 2026-06-15 14:54:51 -0400 |
| commit | e81f04fa53e7e01afdc834d9c22b5c982c98f59b (patch) | |
| tree | 763d6d68516ca9d184ddd2402978adcc4027a99d /multimedia/gstreamer1/plugins-good/patches/patch-sys_v4l2_v4l2_calls_c | |
| parent | 92e45e47c29ec037842c4a34ebc0c14143d413ff (diff) | |
This is due to the following two reasons:
1. it's very out of date compared with current ports tree (like by 2+
years!)
- some of the ports here were mainly just updates I didn't upstream,
which have since now been part of openbsd, like verilator
2. removing dependencies is a lot of headache to stay in sync and/or for
ports I no longer use
- e.g. dbus is very difficult to remove in a desktop while patching
to remove from gtk and downstream
- I don't want to spend more time reducing number of dependencies
when I can be working instead. I no longer have as much free time
as I did in high school :(
Diffstat (limited to 'multimedia/gstreamer1/plugins-good/patches/patch-sys_v4l2_v4l2_calls_c')
| -rw-r--r-- | multimedia/gstreamer1/plugins-good/patches/patch-sys_v4l2_v4l2_calls_c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/multimedia/gstreamer1/plugins-good/patches/patch-sys_v4l2_v4l2_calls_c b/multimedia/gstreamer1/plugins-good/patches/patch-sys_v4l2_v4l2_calls_c deleted file mode 100644 index 2d84e48..0000000 --- a/multimedia/gstreamer1/plugins-good/patches/patch-sys_v4l2_v4l2_calls_c +++ /dev/null | |||
| @@ -1,22 +0,0 @@ | |||
| 1 | Index: sys/v4l2/v4l2_calls.c | ||
| 2 | --- sys/v4l2/v4l2_calls.c.orig | ||
| 3 | +++ sys/v4l2/v4l2_calls.c | ||
| 4 | @@ -1333,14 +1333,18 @@ gst_v4l2_query_dv_timings (GstV4l2Object * v4l2object, | ||
| 5 | |||
| 6 | if (ret < 0) { | ||
| 7 | switch (errno) { | ||
| 8 | +#ifdef ENODATA | ||
| 9 | case ENODATA: | ||
| 10 | GST_DEBUG_OBJECT (v4l2object->dbg_obj, | ||
| 11 | "QUERY_DV_TIMINGS not supported for this input/output"); | ||
| 12 | break; | ||
| 13 | +#endif | ||
| 14 | +#ifdef ENOLINK | ||
| 15 | case ENOLINK: | ||
| 16 | GST_DEBUG_OBJECT (v4l2object->dbg_obj, | ||
| 17 | "No timings could be detected because no signal was found."); | ||
| 18 | break; | ||
| 19 | +#endif | ||
| 20 | case ENOLCK: | ||
| 21 | GST_INFO_OBJECT (v4l2object->dbg_obj, | ||
| 22 | "The signal was unstable and the hardware could not lock on to it."); | ||
