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"
 
 struct AVDictionary {
     int count;
     AVDictionaryEntry *elems;
 };
99545457
 
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
 
cd107896
 #ifndef INT16_MIN
ee155011
 #define INT16_MIN       (-0x7fff - 1)
cd107896
 #endif
 
 #ifndef INT16_MAX
 #define INT16_MAX       0x7fff
 #endif
 
 #ifndef INT32_MIN
ee155011
 #define INT32_MIN       (-0x7fffffff - 1)
cd107896
 #endif
 
 #ifndef INT32_MAX
 #define INT32_MAX       0x7fffffff
 #endif
 
 #ifndef UINT32_MAX
 #define UINT32_MAX      0xffffffff
 #endif
 
 #ifndef INT64_MIN
ee155011
 #define INT64_MIN       (-0x7fffffffffffffffLL - 1)
cd107896
 #endif
 
 #ifndef INT64_MAX
8da9266c
 #define INT64_MAX INT64_C(9223372036854775807)
cd107896
 #endif
 
 #ifndef UINT64_MAX
8da9266c
 #define UINT64_MAX UINT64_C(0xFFFFFFFFFFFFFFFF)
cd107896
 #endif
 
 #ifndef INT_BIT
28499cc8
 #    define INT_BIT (CHAR_BIT * sizeof(int))
cd107896
 #endif
 
05020c89
 #ifndef offsetof
ee155011
 #    define offsetof(T, F) ((unsigned int)((char *)&((T *)0)->F))
05020c89
 #endif
 
7d9beec7
 /* Use to export labels from asm. */
 #define LABEL_MANGLE(a) EXTERN_PREFIX #a
 
05020c89
 // Use rip-relative addressing if compiling PIC code on x86-64.
b250f9c6
 #if ARCH_X86_64 && defined(PIC)
df22c35d
 #    define LOCAL_MANGLE(a) #a "(%%rip)"
edfd6975
 #else
df22c35d
 #    define LOCAL_MANGLE(a) #a
635eb0cc
 #endif
05020c89
 
df22c35d
 #define MANGLE(a) EXTERN_PREFIX LOCAL_MANGLE(a)
 
05020c89
 /* debug stuff */
 
635eb0cc
 #define av_abort()      do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0)
05020c89
 
7e5f82dc
 /* math */
 
b250f9c6
 #if ARCH_X86
05020c89
 #define MASK_ABS(mask, level)\
be449fca
             __asm__ volatile(\
7e14b808
                 "cltd                   \n\t"\
05020c89
                 "xorl %1, %0            \n\t"\
                 "subl %1, %0            \n\t"\
                 : "+a" (level), "=&d" (mask)\
             );
 #else
 #define MASK_ABS(mask, level)\
ee155011
             mask  = level >> 31;\
             level = (level ^ mask) - mask;
05020c89
 #endif
 
7d685b48
 /* avoid usage of dangerous/inappropriate system functions */
84662c01
 #undef  malloc
05020c89
 #define malloc please_use_av_malloc
84662c01
 #undef  free
05020c89
 #define free please_use_av_free
84662c01
 #undef  realloc
05020c89
 #define realloc please_use_av_realloc
84662c01
 #undef  time
05020c89
 #define time time_is_forbidden_due_to_security_issues
84662c01
 #undef  rand
9f5da4d1
 #define rand rand_is_forbidden_due_to_state_trashing_use_av_lfg_get
84662c01
 #undef  srand
9f5da4d1
 #define srand srand_is_forbidden_due_to_state_trashing_use_av_lfg_init
84662c01
 #undef  random
9f5da4d1
 #define random random_is_forbidden_due_to_state_trashing_use_av_lfg_get
84662c01
 #undef  sprintf
05020c89
 #define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf
84662c01
 #undef  strcat
272605c7
 #define strcat strcat_is_forbidden_due_to_security_issues_use_av_strlcat
15695541
 #undef  strncpy
 #define strncpy strncpy_is_forbidden_due_to_security_issues_use_av_strlcpy
84662c01
 #undef  exit
c367d067
 #define exit exit_is_forbidden
84662c01
 #undef  printf
b58f29a1
 #define printf please_use_av_log_instead_of_printf
84662c01
 #undef  fprintf
b58f29a1
 #define fprintf please_use_av_log_instead_of_fprintf
59ec6991
 #undef  puts
b58f29a1
 #define puts please_use_av_log_instead_of_puts
c5a2fe8f
 #undef  perror
 #define perror please_use_av_log_instead_of_perror
05020c89
 
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
 /**
  * Returns NULL if a threading library has not been enabled.
  * 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
 
e9735572
 #if HAVE_MMX
 /**
  * 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
 }
 #else /* HAVE_MMX */
 #define emms_c()
 #endif /* HAVE_MMX */
 
98790382
 #endif /* AVUTIL_INTERNAL_H */