diff options
| author | Michael Forney <mforney@mforney.org> | 2021-05-07 22:54:42 -0700 |
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2021-07-25 21:11:05 -0700 |
| commit | 5548313d47e37e966b1ac3bf5deaad8e0c42666b (patch) | |
| tree | 089ab9fb7ef70508f2ee043f5ae85c8c17f73816 /pkg/ffmpeg/config-head.h | |
| parent | a02412b3637ff39935c2df2cce98d274b7eab480 (diff) | |
ffmpeg: Probe for PIC
For nasm, we cannot just use __PIC__ from the preprocessor, so add
a probe test for it.
Diffstat (limited to 'pkg/ffmpeg/config-head.h')
| -rw-r--r-- | pkg/ffmpeg/config-head.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pkg/ffmpeg/config-head.h b/pkg/ffmpeg/config-head.h new file mode 100644 index 00000000..4e3132e6 --- /dev/null +++ b/pkg/ffmpeg/config-head.h @@ -0,0 +1,15 @@ +#ifndef FFMPEG_CONFIG_H +#define FFMPEG_CONFIG_H +#define FFMPEG_CONFIGURATION "" +#define FFMPEG_LICENSE "LGPL version 2.1 or later" +#define CONFIG_THIS_YEAR 2021 +#define FFMPEG_DATADIR "/share/ffmpeg" +#define AVCONV_DATADIR "/share/ffmpeg" +#define CC_IDENT "gcc" +#define av_restrict restrict +#define EXTERN_PREFIX "" +#define EXTERN_ASM +#define BUILDSUF "" +#define SLIBSUF ".so" +#define HAVE_MMX2 HAVE_MMXEXT +#define SWS_MAX_FILTER_SIZE 256 |
