Skip to content
Snippets Groups Projects
Commit 6de977a0 authored by Marvin Scholz's avatar Marvin Scholz Committed by Jean-Baptiste Kempf
Browse files

rav1e: fix incorrect include

The rav1e .pc file adds -I${includedir}/rav1e so including rav1e/rav1e.h
would expand to ${includedir}/rav1e/rav1e/rav1e.h which leads to the
header not being found.
parent e3a42ec9
No related branches found
No related tags found
Loading
Pipeline #201985 passed with stages
in 40 minutes and 26 seconds
......@@ -28,7 +28,7 @@
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_codec.h>
#include <rav1e/rav1e.h>
#include <rav1e.h>
#define SOUT_CFG_PREFIX "sout-rav1e-"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment