diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-03-28 09:20:15 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-03-31 00:08:42 +0100 |
commit | a265e8ca92662f1a2248b72dcf20375c88ffc400 (patch) | |
tree | ede2ea197bb6a5b5ebb838becca17c44d2f30ed2 /libavcodec/qsv.c | |
parent | b49e621c83209a4f3d2c525a4ce33bd87aa02a84 (diff) | |
download | ffmpeg-a265e8ca92662f1a2248b72dcf20375c88ffc400.tar.gz |
avcodec, avfilter: Don't use "" for system headers
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/qsv.c')
-rw-r--r-- | libavcodec/qsv.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/qsv.c b/libavcodec/qsv.c index 7563625627..01ce186dae 100644 --- a/libavcodec/qsv.c +++ b/libavcodec/qsv.c @@ -20,6 +20,7 @@ #include <mfxvideo.h> #include <mfxjpeg.h> +#include <mfxvp8.h> #include <stdio.h> #include <string.h> @@ -39,8 +40,6 @@ #define QSV_HAVE_USER_PLUGIN !QSV_ONEVPL #define QSV_HAVE_AUDIO !QSV_ONEVPL -#include "mfxvp8.h" - #if QSV_HAVE_USER_PLUGIN #include <mfxplugin.h> #endif |