Browse Source

avisynth: Simplify shared library name construction

tags/n2.7
Diego Biurrun 10 years ago
parent
commit
247aa7af7d
1 changed files with 3 additions and 5 deletions
  1. +3
    -5
      libavformat/avisynth.c

+ 3
- 5
libavformat/avisynth.c View File

@@ -23,6 +23,7 @@
#include "libavcodec/internal.h"
#include "avformat.h"
#include "internal.h"
#include "config.h"

/* Enable function pointer definitions for runtime loading. */
#define AVSC_NO_DECLSPEC
@@ -37,11 +38,8 @@
#else
#include <dlfcn.h>
#include <avxsynth/avxsynth_c.h>
#if defined (__APPLE__)
#define AVISYNTH_LIB "libavxsynth.dylib"
#else
#define AVISYNTH_LIB "libavxsynth.so"
#endif
#define AVISYNTH_NAME "libavxsynth"
#define AVISYNTH_LIB AVISYNTH_NAME SLIBSUF

#define LoadLibrary(x) dlopen(x, RTLD_NOW | RTLD_LOCAL)
#define GetProcAddress dlsym


Loading…
Cancel
Save