[vlc-commits] [Git][videolan/vlc][master] rav1e: fix incorrect include
Jean-Baptiste Kempf (@jbk)
gitlab at videolan.org
Sat Mar 19 18:32:46 UTC 2022
Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC
Commits:
6de977a0 by Marvin Scholz at 2022-03-19T18:14:09+00:00
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.
- - - - -
1 changed file:
- modules/codec/rav1e.c
Changes:
=====================================
modules/codec/rav1e.c
=====================================
@@ -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-"
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/6de977a00de6e37ceeaa059877663278b5db8427
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/6de977a00de6e37ceeaa059877663278b5db8427
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list