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
 /**
bad5537e
  * @file libavutil/internal.h
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"
52476c1b
 #include "common.h"
9d52d54d
 #include "mem.h"
2f5421d5
 #include "timer.h"
99545457
 
5e4c7ca2
 #ifndef attribute_align_arg
af4c0bcb
 #if (!defined(__ICC) || __ICC > 1100) && AV_GCC_VERSION_AT_LEAST(4,2)
5e4c7ca2
 #    define attribute_align_arg __attribute__((force_align_arg_pointer))
 #else
 #    define attribute_align_arg
 #endif
 #endif
 
5403f857
 #ifndef attribute_used
52476c1b
 #if AV_GCC_VERSION_AT_LEAST(3,1)
5403f857
 #    define attribute_used __attribute__((used))
 #else
 #    define attribute_used
 #endif
 #endif
 
cd107896
 #ifndef INT16_MIN
 #define INT16_MIN       (-0x7fff-1)
 #endif
 
 #ifndef INT16_MAX
 #define INT16_MAX       0x7fff
 #endif
 
 #ifndef INT32_MIN
 #define INT32_MIN       (-0x7fffffff-1)
 #endif
 
 #ifndef INT32_MAX
 #define INT32_MAX       0x7fffffff
 #endif
 
 #ifndef UINT32_MAX
 #define UINT32_MAX      0xffffffff
 #endif
 
 #ifndef INT64_MIN
 #define INT64_MIN       (-0x7fffffffffffffffLL-1)
 #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
 #if ( defined(__PIC__) || defined(__pic__) ) && ! defined(PIC)
 #    define PIC
 #endif
 
 #ifndef offsetof
635eb0cc
 #    define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F))
05020c89
 #endif
 
 // 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 */
 
 /* dprintf macros */
635eb0cc
 #ifdef DEBUG
318c5e05
 #    define dprintf(pctx, ...) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__)
635eb0cc
 #else
318c5e05
 #    define dprintf(pctx, ...)
635eb0cc
 #endif
05020c89
 
635eb0cc
 #define av_abort()      do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0)
05020c89
 
7e5f82dc
 /* math */
 
36cd3069
 extern const uint32_t ff_inverse[256];
05020c89
 
b250f9c6
 #if ARCH_X86
05020c89
 #    define FASTDIV(a,b) \
     ({\
         int ret,dmy;\
be449fca
         __asm__ volatile(\
05020c89
             "mull %3"\
             :"=d"(ret),"=a"(dmy)\
36cd3069
             :"1"(a),"g"(ff_inverse[b])\
05020c89
             );\
         ret;\
     })
b250f9c6
 #elif HAVE_ARMV6
6651ce17
 static inline av_const int FASTDIV(int a, int b)
 {
b98f10c0
     int r, t;
     __asm__ volatile("cmp     %3, #2               \n\t"
                      "ldr     %1, [%4, %3, lsl #2] \n\t"
                      "lsrle   %0, %2, #1           \n\t"
                      "smmulgt %0, %1, %2           \n\t"
                      : "=&r"(r), "=&r"(t) : "r"(a), "r"(b), "r"(ff_inverse));
6651ce17
     return r;
 }
b250f9c6
 #elif ARCH_ARM
f8c5adaf
 static inline av_const int FASTDIV(int a, int b)
 {
     int r, t;
     __asm__ volatile ("umull %1, %0, %2, %3"
                       : "=&r"(r), "=&r"(t) : "r"(a), "r"(ff_inverse[b]));
     return r;
 }
b250f9c6
 #elif CONFIG_FASTDIV
36cd3069
 #    define FASTDIV(a,b)   ((uint32_t)((((uint64_t)a)*ff_inverse[b])>>32))
05020c89
 #else
 #    define FASTDIV(a,b)   ((a)/(b))
 #endif
 
c448a096
 extern const uint8_t ff_sqrt_tab[256];
05020c89
 
85074d3c
 static inline av_const unsigned int ff_sqrt(unsigned int a)
05020c89
 {
c448a096
     unsigned int b;
 
     if(a<255) return (ff_sqrt_tab[a+1]-1)>>4;
     else if(a<(1<<12)) b= ff_sqrt_tab[a>>4 ]>>2;
b250f9c6
 #if !CONFIG_SMALL
c448a096
     else if(a<(1<<14)) b= ff_sqrt_tab[a>>6 ]>>1;
     else if(a<(1<<16)) b= ff_sqrt_tab[a>>8 ]   ;
 #endif
     else{
         int s= av_log2_16bit(a>>16)>>1;
         unsigned int c= a>>(s+2);
         b= ff_sqrt_tab[c>>(s+8)];
         b= FASTDIV(c,b) + (b<<s);
05020c89
     }
c448a096
 
     return b - (a<b*b);
05020c89
 }
 
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)\
             mask= level>>31;\
             level= (level^mask)-mask;
 #endif
 
b250f9c6
 #if HAVE_CMOV
05020c89
 #define COPY3_IF_LT(x,y,a,b,c,d)\
be449fca
 __asm__ volatile (\
05020c89
     "cmpl %0, %3        \n\t"\
     "cmovl %3, %0       \n\t"\
     "cmovl %4, %1       \n\t"\
     "cmovl %5, %2       \n\t"\
8c2e2040
     : "+&r" (x), "+&r" (a), "+r" (c)\
05020c89
     : "r" (y), "r" (b), "r" (d)\
 );
 #else
 #define COPY3_IF_LT(x,y,a,b,c,d)\
 if((y)<(x)){\
      (x)=(y);\
      (a)=(b);\
      (c)=(d);\
 }
 #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
3299fb45
 #define rand rand_is_forbidden_due_to_state_trashing_use_av_random
84662c01
 #undef  srand
9c868219
 #define srand srand_is_forbidden_due_to_state_trashing_use_av_random_init
84662c01
 #undef  random
3299fb45
 #define random random_is_forbidden_due_to_state_trashing_use_av_random
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
84662c01
 #undef  exit
c367d067
 #define exit exit_is_forbidden
6123abad
 #ifndef LIBAVFORMAT_BUILD
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
 #endif
 
 #define CHECKED_ALLOCZ(p, size)\
 {\
     p= av_mallocz(size);\
     if(p==NULL && (size)!=0){\
7f0cd6a5
         av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.");\
05020c89
         goto fail;\
     }\
 }
 
4ce94923
 #if defined(__ICC) || defined(__SUNPRO_C)
1330a8a1
     #define DECLARE_ALIGNED(n,t,v)      t __attribute__ ((aligned (n))) v
4ce94923
     #define DECLARE_ASM_CONST(n,t,v)    const t __attribute__ ((aligned (n))) v
 #elif defined(__GNUC__)
1330a8a1
     #define DECLARE_ALIGNED(n,t,v)      t __attribute__ ((aligned (n))) v
     #define DECLARE_ASM_CONST(n,t,v)    static const t attribute_used __attribute__ ((aligned (n))) v
0f73b510
 #elif defined(_MSC_VER)
     #define DECLARE_ALIGNED(n,t,v)      __declspec(align(n)) t v
     #define DECLARE_ASM_CONST(n,t,v)    __declspec(align(n)) static const t v
4ce94923
 #elif HAVE_INLINE_ASM
     #error The asm code needs alignment, but we do not know how to do it for this compiler.
 #else
     #define DECLARE_ALIGNED(n,t,v)      t v
     #define DECLARE_ASM_CONST(n,t,v)    static const t v
 #endif
 
 
b250f9c6
 #if !HAVE_LLRINT
85074d3c
 static av_always_inline av_const long long llrint(double x)
a33cab3a
 {
     return rint(x);
 }
 #endif /* HAVE_LLRINT */
 
b250f9c6
 #if !HAVE_LRINT
85074d3c
 static av_always_inline av_const long int lrint(double x)
a33cab3a
 {
     return rint(x);
 }
 #endif /* HAVE_LRINT */
 
b250f9c6
 #if !HAVE_LRINTF
85074d3c
 static av_always_inline av_const long int lrintf(float x)
05020c89
 {
     return (int)(rint(x));
 }
 #endif /* HAVE_LRINTF */
 
b250f9c6
 #if !HAVE_ROUND
85074d3c
 static av_always_inline av_const double round(double x)
a33cab3a
 {
     return (x > 0) ? floor(x + 0.5) : ceil(x - 0.5);
 }
 #endif /* HAVE_ROUND */
 
b250f9c6
 #if !HAVE_ROUNDF
85074d3c
 static av_always_inline av_const float roundf(float x)
a33cab3a
 {
     return (x > 0) ? floor(x + 0.5) : ceil(x - 0.5);
 }
 #endif /* HAVE_ROUNDF */
 
b250f9c6
 #if !HAVE_TRUNCF
7b04b8a0
 static av_always_inline av_const float truncf(float x)
 {
     return (x > 0) ? floor(x) : ceil(x);
 }
 #endif /* HAVE_TRUNCF */
 
d80a7fe5
 /**
bfe3676f
  * Returns NULL if CONFIG_SMALL is true, otherwise the argument
  * 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
 
98790382
 #endif /* AVUTIL_INTERNAL_H */