summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorTimo Rothenpieler <timo@rothenpieler.org>2018-10-21 22:32:32 +0200
committerTimo Rothenpieler <timo@rothenpieler.org>2018-10-21 22:55:21 +0200
commit2797bd5c81ebbfe13eb5bc4261032ded819271cf (patch)
tree62ea0b15a8fd00737c234dca3110966994e51f7b /libavfilter
parent8d3f364630a8ca0072239a101a12f75fddbdad1b (diff)
avfilter/*_cuda: don't include internal header
It's not used, and pulls in the ffnvcodec header, which does not neccesarily have to exist to build these filters, since they include the full cuda.h.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_scale_cuda.c2
-rw-r--r--libavfilter/vf_thumbnail_cuda.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_scale_cuda.c b/libavfilter/vf_scale_cuda.c
index 23ac27a7dc..7b2b78c1ed 100644
--- a/libavfilter/vf_scale_cuda.c
+++ b/libavfilter/vf_scale_cuda.c
@@ -27,7 +27,7 @@
#include "libavutil/avstring.h"
#include "libavutil/common.h"
#include "libavutil/hwcontext.h"
-#include "libavutil/hwcontext_cuda_internal.h"
+#include "libavutil/hwcontext_cuda.h"
#include "libavutil/internal.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
diff --git a/libavfilter/vf_thumbnail_cuda.c b/libavfilter/vf_thumbnail_cuda.c
index 09377ca7f4..53df7e0bf7 100644
--- a/libavfilter/vf_thumbnail_cuda.c
+++ b/libavfilter/vf_thumbnail_cuda.c
@@ -23,7 +23,7 @@
#include <cuda.h>
#include "libavutil/hwcontext.h"
-#include "libavutil/hwcontext_cuda_internal.h"
+#include "libavutil/hwcontext_cuda.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"