This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avcodec/nvenc.c: Use new safe dlopen code.
Signed-off-by: Matt Oliver <protogonoi@gmail.com>
tags/n3.3
Matt Oliver
9 years ago
parent
d6f85ec270
commit
6ead033bca
1 changed files
with
1 additions
and
5 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-5
libavcodec/nvenc.c
+ 1
- 5
libavcodec/nvenc.c
View File
@@ -34,11 +34,7 @@
#endif
#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)
#include "compat/w32dlfcn.h"
#else
#include <dlfcn.h>
#endif
Write
Preview
Loading…
Cancel
Save