summaryrefslogtreecommitdiffstats
path: root/waftools/fragments/cuda.c
diff options
context:
space:
mode:
Diffstat (limited to 'waftools/fragments/cuda.c')
-rw-r--r--waftools/fragments/cuda.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/waftools/fragments/cuda.c b/waftools/fragments/cuda.c
index c63ec2945d..1d534f62d3 100644
--- a/waftools/fragments/cuda.c
+++ b/waftools/fragments/cuda.c
@@ -2,11 +2,14 @@
typedef void * CUcontext;
+#include <libavcodec/avcodec.h>
#include <libavutil/hwcontext.h>
#include <libavutil/hwcontext_cuda.h>
int main(int argc, char *argv[]) {
enum AVHWDeviceType type = AV_HWDEVICE_TYPE_CUDA;
AVCUDADeviceContextInternal *foo;
+ AVCodecContext *avctx = avcodec_alloc_context3(NULL);
+ avctx->hw_device_ctx = NULL;
return 0;
}