summaryrefslogtreecommitdiff
path: root/multimedia/aom/files/patch-aom__dsp_vmaf.c
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/aom/files/patch-aom__dsp_vmaf.c')
-rw-r--r--multimedia/aom/files/patch-aom__dsp_vmaf.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/multimedia/aom/files/patch-aom__dsp_vmaf.c b/multimedia/aom/files/patch-aom__dsp_vmaf.c
deleted file mode 100644
index c93200a85681..000000000000
--- a/multimedia/aom/files/patch-aom__dsp_vmaf.c
+++ /dev/null
@@ -1,20 +0,0 @@
-Allow building before https://github.com/Netflix/vmaf/commit/82a86e040371
-
-aom_dsp/vmaf.c:12:10: fatal error: 'libvmaf/libvmaf.h' file not found
-#include <libvmaf/libvmaf.h>
- ^~~~~~~~~~~~~~~~~~~
-
---- aom_dsp/vmaf.c.orig 2020-02-07 16:59:05 UTC
-+++ aom_dsp/vmaf.c
-@@ -10,7 +10,11 @@
- */
-
- #include <assert.h>
-+#if __has_include(<libvmaf/libvmaf.h>)
- #include <libvmaf/libvmaf.h>
-+#else
-+#include <libvmaf.h>
-+#endif
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>