Spaces:
Runtime error
Runtime error
/* | |
* This file is part of FFmpeg. | |
* | |
* FFmpeg is free software; you can redistribute it and/or | |
* modify it under the terms of the GNU Lesser General Public | |
* License as published by the Free Software Foundation; either | |
* version 2.1 of the License, or (at your option) any later version. | |
* | |
* FFmpeg is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
* Lesser General Public License for more details. | |
* | |
* You should have received a copy of the GNU Lesser General Public | |
* License along with FFmpeg; if not, write to the Free Software | |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
*/ | |
/* | |
* based on vlc_atomic.h from VLC | |
* Copyright (C) 2010 Rémi Denis-Courmont | |
*/ | |
typedef _Bool atomic_flag; | |
typedef _Bool atomic_bool; | |
typedef char atomic_char; | |
typedef signed char atomic_schar; | |
typedef unsigned char atomic_uchar; | |
typedef short atomic_short; | |
typedef unsigned short atomic_ushort; | |
typedef int atomic_int; | |
typedef unsigned int atomic_uint; | |
typedef long atomic_long; | |
typedef unsigned long atomic_ulong; | |
typedef long long atomic_llong; | |
typedef unsigned long long atomic_ullong; | |
typedef wchar_t atomic_wchar_t; | |
typedef int_least8_t atomic_int_least8_t; | |
typedef uint_least8_t atomic_uint_least8_t; | |
typedef int_least16_t atomic_int_least16_t; | |
typedef uint_least16_t atomic_uint_least16_t; | |
typedef int_least32_t atomic_int_least32_t; | |
typedef uint_least32_t atomic_uint_least32_t; | |
typedef int_least64_t atomic_int_least64_t; | |
typedef uint_least64_t atomic_uint_least64_t; | |
typedef int_fast8_t atomic_int_fast8_t; | |
typedef uint_fast8_t atomic_uint_fast8_t; | |
typedef int_fast16_t atomic_int_fast16_t; | |
typedef uint_fast16_t atomic_uint_fast16_t; | |
typedef int_fast32_t atomic_int_fast32_t; | |
typedef uint_fast32_t atomic_uint_fast32_t; | |
typedef int_fast64_t atomic_int_fast64_t; | |
typedef uint_fast64_t atomic_uint_fast64_t; | |
typedef intptr_t atomic_intptr_t; | |
typedef uintptr_t atomic_uintptr_t; | |
typedef size_t atomic_size_t; | |
typedef ptrdiff_t atomic_ptrdiff_t; | |
typedef intmax_t atomic_intmax_t; | |
typedef uintmax_t atomic_uintmax_t; | |