Commit 19e75fd8 authored by Timo Rothenpieler's avatar Timo Rothenpieler

avcodec/nvenc: fix library names on cygwin

parent 2ee8a4f8
......@@ -21,24 +21,26 @@
#include "config.h"
#if defined(_WIN32)
#include <windows.h>
#define CUDA_LIBNAME TEXT("nvcuda.dll")
#if ARCH_X86_64
#define NVENC_LIBNAME TEXT("nvEncodeAPI64.dll")
#if defined(_WIN32) || defined(__CYGWIN__)
# define CUDA_LIBNAME "nvcuda.dll"
# if ARCH_X86_64
# define NVENC_LIBNAME "nvEncodeAPI64.dll"
# else
# define NVENC_LIBNAME "nvEncodeAPI.dll"
# endif
#else
#define NVENC_LIBNAME TEXT("nvEncodeAPI.dll")
# define CUDA_LIBNAME "libcuda.so"
# define NVENC_LIBNAME "libnvidia-encode.so"
#endif
#define dlopen(filename, flags) LoadLibrary((filename))
#if defined(_WIN32)
#include <windows.h>
#define dlopen(filename, flags) LoadLibrary(TEXT(filename))
#define dlsym(handle, symbol) GetProcAddress(handle, symbol)
#define dlclose(handle) FreeLibrary(handle)
#else
#include <dlfcn.h>
#define CUDA_LIBNAME "libcuda.so"
#define NVENC_LIBNAME "libnvidia-encode.so"
#endif
#include "libavutil/hwcontext.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment