mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 05:50:43 +00:00
lavfi/xbr: undef PI if defined
This conflict with the DJGPP libc math.h which includes a PI macro (to M_PI). We cannot make DJGPP POSIX only (using -D_POSIX_SOURCE) to avoid this kind of symbols conflicts due to the lack of both posix_memalign and memalign (DJGPP non standard function) in that POSIX mode. We currently rely on memalign for aligned heap allocation.
This commit is contained in:
parent
4ea8f57548
commit
4606807031
@ -37,6 +37,10 @@
|
||||
#define RED_BLUE_MASK 0x00FF00FF
|
||||
#define GREEN_MASK 0x0000FF00
|
||||
|
||||
#ifdef PI
|
||||
#undef PI
|
||||
#endif
|
||||
|
||||
typedef int (*xbrfunc_t)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
|
||||
|
||||
typedef struct {
|
||||
|
Loading…
Reference in New Issue
Block a user