mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 05:00:37 +00:00
Merge remote-tracking branch 'qatar/master'
* qatar/master: atomics: cosmetics: Restructure ifdefs for greater clarity Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
3f307d79d3
@ -18,6 +18,7 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "atomic.h"
|
||||
|
||||
#if !HAVE_ATOMICS_NATIVE
|
||||
@ -102,7 +103,7 @@ void *avpriv_atomic_ptr_cas(void * volatile *ptr, void *oldval, void *newval)
|
||||
|
||||
#endif /* HAVE_PTHREADS */
|
||||
|
||||
#endif /* !HAVE_MEMORYBARRIER && !HAVE_SYNC_VAL_COMPARE_AND_SWAP && !HAVE_MACHINE_RW_BARRIER */
|
||||
#endif /* !HAVE_ATOMICS_NATIVE */
|
||||
|
||||
#ifdef TEST
|
||||
#include "avassert.h"
|
||||
|
@ -23,12 +23,16 @@
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#if HAVE_ATOMICS_NATIVE
|
||||
|
||||
#if HAVE_ATOMICS_GCC
|
||||
#include "atomic_gcc.h"
|
||||
#elif HAVE_ATOMICS_WIN32
|
||||
#include "atomic_win32.h"
|
||||
#elif HAVE_ATOMICS_SUNCC
|
||||
#include "atomic_suncc.h"
|
||||
#endif
|
||||
|
||||
#else
|
||||
|
||||
/**
|
||||
@ -70,5 +74,6 @@ int avpriv_atomic_int_add_and_fetch(volatile int *ptr, int inc);
|
||||
*/
|
||||
void *avpriv_atomic_ptr_cas(void * volatile *ptr, void *oldval, void *newval);
|
||||
|
||||
#endif /* HAVE_MEMORYBARRIER */
|
||||
#endif /* HAVE_ATOMICS_NATIVE */
|
||||
|
||||
#endif /* AVUTIL_ATOMIC_H */
|
||||
|
Loading…
Reference in New Issue
Block a user