libavutil/internal.h
04d7f601
 /*
  * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
04d7f601
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
04d7f601
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
04d7f601
  * 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
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
04d7f601
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
05020c89
 /**
ba87f080
  * @file
89c9ff50
  * common internal API header
05020c89
  */
 
98790382
 #ifndef AVUTIL_INTERNAL_H
 #define AVUTIL_INTERNAL_H
05020c89
 
318049b8
 #if !defined(DEBUG) && !defined(NDEBUG)
 #    define NDEBUG
 #endif
 
ed0fd852
 #include <limits.h>
99545457
 #include <stdint.h>
318049b8
 #include <stddef.h>
 #include <assert.h>
dbef3f46
 #include "config.h"
2ed6f399
 #include "attributes.h"
2f5421d5
 #include "timer.h"
034fc7bf
 #include "cpu.h"
d9f80ea2
 #include "dict.h"
 
5e4c7ca2
 #ifndef attribute_align_arg
820818a3
 #if ARCH_X86_32 && AV_GCC_VERSION_AT_LEAST(4,2)
5e4c7ca2
 #    define attribute_align_arg __attribute__((force_align_arg_pointer))
 #else
 #    define attribute_align_arg
 #endif
 #endif
 
d66c52c2
 #if defined(_MSC_VER) && CONFIG_SHARED
 #    define av_export __declspec(dllimport)
 #else
 #    define av_export
 #endif
 
cd107896
 #ifndef INT_BIT
28499cc8
 #    define INT_BIT (CHAR_BIT * sizeof(int))
cd107896
 #endif
 
d31dbec3
 #define FF_ALLOC_OR_GOTO(ctx, p, size, label)\
e48a0966
 {\
ee155011
     p = av_malloc(size);\
     if (p == NULL && (size) != 0) {\
d31dbec3
         av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
         goto label;\
e48a0966
     }\
 }
 
d31dbec3
 #define FF_ALLOCZ_OR_GOTO(ctx, p, size, label)\
05020c89
 {\
ee155011
     p = av_mallocz(size);\
     if (p == NULL && (size) != 0) {\
d31dbec3
         av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
         goto label;\
05020c89
     }\
 }
 
335ee1aa
 #include "libm.h"
7b04b8a0
 
d80a7fe5
 /**
49bd8e4b
  * Return NULL if CONFIG_SMALL is true, otherwise the argument
bfe3676f
  * without modification. Used to disable the definition of strings
d80a7fe5
  * (for example AVCodec long_names).
  */
 #if CONFIG_SMALL
 #   define NULL_IF_CONFIG_SMALL(x) NULL
 #else
 #   define NULL_IF_CONFIG_SMALL(x) x
 #endif
 
33586ee7
 /**
cae70f99
  * Define a function with only the non-default version specified.
  *
  * On systems with ELF shared libraries, all symbols exported from
  * FFmpeg libraries are tagged with the name and major version of the
  * library to which they belong.  If a function is moved from one
  * library to another, a wrapper must be retained in the original
  * location to preserve binary compatibility.
  *
  * Functions defined with this macro will never be used to resolve
  * symbols by the build-time linker.
  *
  * @param type return type of function
  * @param name name of function
  * @param args argument list of function
  * @param ver  version tag to assign function
33586ee7
  */
b462d132
 #if HAVE_SYMVER_ASM_LABEL
ccc87908
 #   define FF_SYMVER(type, name, args, ver)                     \
     type ff_##name args __asm__ (EXTERN_PREFIX #name "@" ver);  \
b462d132
     type ff_##name args
 #elif HAVE_SYMVER_GNU_ASM
ccc87908
 #   define FF_SYMVER(type, name, args, ver)                             \
     __asm__ (".symver ff_" #name "," EXTERN_PREFIX #name "@" ver);      \
     type ff_##name args;                                                \
b462d132
     type ff_##name args
 #endif
 
b38f008e
 /**
58c42af7
  * Return NULL if a threading library has not been enabled.
b38f008e
  * Used to disable threading functions in AVCodec definitions
  * when not needed.
  */
 #if HAVE_THREADS
 #   define ONLY_IF_THREADS_ENABLED(x) x
 #else
 #   define ONLY_IF_THREADS_ENABLED(x) NULL
 #endif
 
17337f54
 #if HAVE_MMX_INLINE
e9735572
 /**
  * Empty mmx state.
  * this must be called between any dsp function and float/double code.
  * for example sin(); dsp->idct_put(); emms_c(); cos()
  */
 static av_always_inline void emms_c(void)
 {
034fc7bf
     if(av_get_cpu_flags() & AV_CPU_FLAG_MMX)
         __asm__ volatile ("emms" ::: "memory");
e9735572
 }
f80ddd5b
 #elif HAVE_MMX && HAVE_MM_EMPTY
 #   include <mmintrin.h>
 #   define emms_c _mm_empty
17337f54
 #else
f80ddd5b
 #   define emms_c()
17337f54
 #endif /* HAVE_MMX_INLINE */
e9735572
 
98790382
 #endif /* AVUTIL_INTERNAL_H */