Commit c88503e3 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '439902e0'

* commit '439902e0':
  Employ consistent LIBAV_COMPAT_ multiple inclusion guards in compat/

Conflicts:
	compat/aix/math.h
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 8740762c 439902e0
/*
* Workaround aix-specific class() function clashing with ffmpeg class usage
*/
/* Work around the class() function in AIX math.h clashing with identifiers
* named "class". */
#ifndef COMPAT_AIX_MATH_H
#define COMPAT_AIX_MATH_H
#ifndef FFMPEG_COMPAT_AIX_MATH_H
#define FFMPEG_COMPAT_AIX_MATH_H
#define class class_in_math_h_causes_problems
......@@ -11,4 +10,4 @@
#undef class
#endif /* COMPAT_AIX_MATH_H */
#endif /* FFMPEG_COMPAT_AIX_MATH_H */
#ifndef FFMPEG_COMPAT_TMS470_MATH_H
#define FFMPEG_COMPAT_TMS470_MATH_H
#include_next <math.h>
#undef INFINITY
......@@ -5,3 +8,5 @@
#define INFINITY (*(const float*)((const unsigned []){ 0x7f800000 }))
#define NAN (*(const float*)((const unsigned []){ 0x7fc00000 }))
#endif /* FFMPEG_COMPAT_TMS470_MATH_H */
......@@ -26,8 +26,8 @@
* w32threads to pthreads wrapper
*/
#ifndef LIBAV_W32PTHREADS_H
#define LIBAV_W32PTHREADS_H
#ifndef FFMPEG_COMPAT_W32PTHREADS_H
#define FFMPEG_COMPAT_W32PTHREADS_H
/* Build up a pthread-like API using underlying Windows API. Have only static
* methods so as to not conflict with a potentially linked in pthread-win32
......@@ -277,4 +277,4 @@ static void w32thread_init(void)
}
#endif /* LIBAV_W32PTHREADS_H */
#endif /* FFMPEG_COMPAT_W32PTHREADS_H */
......@@ -29,4 +29,4 @@
#define have_vfpv3(flags) (HAVE_VFPV3 && ((flags) & AV_CPU_FLAG_VFPV3))
#define have_neon(flags) (HAVE_NEON && ((flags) & AV_CPU_FLAG_NEON))
#endif
#endif /* AVUTIL_ARM_CPU_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