blob: c63ec2945d44195837c83c1415e4468c4da6a5fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#define CUDA_VERSION 7050
typedef void * CUcontext;
#include <libavutil/hwcontext.h>
#include <libavutil/hwcontext_cuda.h>
int main(int argc, char *argv[]) {
enum AVHWDeviceType type = AV_HWDEVICE_TYPE_CUDA;
AVCUDADeviceContextInternal *foo;
return 0;
}
|