summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorPhilip Langdale <philipl@overt.org>2023-09-03 10:26:04 -0700
committerPhilip Langdale <github.philipl@overt.org>2023-09-04 15:22:20 -0700
commitfb5273985cf2f5ae2c84eb95e1f79c49a549e2e5 (patch)
treed37c3dbf305adec6ec6fce24d346a1c14b8970e9 /misc
parent64bb9c092aec0c055fcd00fac419837100c6fbab (diff)
downloadmpv-fb5273985cf2f5ae2c84eb95e1f79c49a549e2e5.tar.bz2
mpv-fb5273985cf2f5ae2c84eb95e1f79c49a549e2e5.tar.xz
meson: include our local copy of libavutil uuid if ffmpeg is too old
In the previous change, I added the uuid files. In this change, we check the libavutil version and if it's too old, we compile in our local copy. We have to change the include paths of the uuid code to find some other libavutil headers, but nothing beyond that.
Diffstat (limited to 'misc')
-rw-r--r--misc/uuid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/uuid.c b/misc/uuid.c
index 062e28736b..c739b3cf08 100644
--- a/misc/uuid.c
+++ b/misc/uuid.c
@@ -61,8 +61,8 @@
*/
#include "uuid.h"
-#include "error.h"
-#include "avstring.h"
+#include "libavutil/error.h"
+#include "libavutil/avstring.h"
int av_uuid_parse(const char *in, AVUUID uu)
{