annotate internal.h @ 626:667697e17feb libavutil

Add required limits.h header.
author diego
date Sun, 25 Jan 2009 21:54:05 +0000
parents ddcfe921388f
children d4b82de2ce47
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
108
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 107
diff changeset
1 /*
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 107
diff changeset
2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 107
diff changeset
3 *
116
d76a36742464 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 114
diff changeset
4 * This file is part of FFmpeg.
d76a36742464 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 114
diff changeset
5 *
d76a36742464 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 114
diff changeset
6 * FFmpeg is free software; you can redistribute it and/or
108
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 107
diff changeset
7 * modify it under the terms of the GNU Lesser General Public
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 107
diff changeset
8 * License as published by the Free Software Foundation; either
116
d76a36742464 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 114
diff changeset
9 * version 2.1 of the License, or (at your option) any later version.
108
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 107
diff changeset
10 *
116
d76a36742464 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 114
diff changeset
11 * FFmpeg is distributed in the hope that it will be useful,
108
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 107
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 107
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 107
diff changeset
14 * Lesser General Public License for more details.
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 107
diff changeset
15 *
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 107
diff changeset
16 * You should have received a copy of the GNU Lesser General Public
116
d76a36742464 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 114
diff changeset
17 * License along with FFmpeg; if not, write to the Free Software
108
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 107
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 107
diff changeset
19 */
11be8e0d1344 Add official LGPL license headers to the files that were missing them.
diego
parents: 107
diff changeset
20
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
21 /**
80
624fc3ad183a Split common.h in two parts, purely internal stuff (internal.h) and things
reimar
parents: 75
diff changeset
22 * @file internal.h
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
23 * common internal api header.
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
24 */
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
25
567
bd4052d9050c Globally rename the header inclusion guard names.
stefano
parents: 549
diff changeset
26 #ifndef AVUTIL_INTERNAL_H
bd4052d9050c Globally rename the header inclusion guard names.
stefano
parents: 549
diff changeset
27 #define AVUTIL_INTERNAL_H
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
28
366
4d3f4347b718 move #include of system headers to top of file
mru
parents: 365
diff changeset
29 #if !defined(DEBUG) && !defined(NDEBUG)
4d3f4347b718 move #include of system headers to top of file
mru
parents: 365
diff changeset
30 # define NDEBUG
4d3f4347b718 move #include of system headers to top of file
mru
parents: 365
diff changeset
31 #endif
4d3f4347b718 move #include of system headers to top of file
mru
parents: 365
diff changeset
32
626
667697e17feb Add required limits.h header.
diego
parents: 625
diff changeset
33 #include <limits.h>
343
f21d1907d47c include all prerequisites in header files
mru
parents: 340
diff changeset
34 #include <stdint.h>
366
4d3f4347b718 move #include of system headers to top of file
mru
parents: 365
diff changeset
35 #include <stddef.h>
4d3f4347b718 move #include of system headers to top of file
mru
parents: 365
diff changeset
36 #include <assert.h>
590
e9d89a89561a Use AV_GCC_VERSION_AT_LEAST() to simplify gcc version checks.
cehoyos
parents: 589
diff changeset
37 #include "common.h"
604
3c748945c2ad move timer related code in a new timer.h file
aurel
parents: 603
diff changeset
38 #include "timer.h"
343
f21d1907d47c include all prerequisites in header files
mru
parents: 340
diff changeset
39
374
8805bba131a9 Add attribute that forces alignment of stack to functions that need it.
ramiro
parents: 366
diff changeset
40 #ifndef attribute_align_arg
591
5fe37f8a1017 Silence the following icc warnings:
cehoyos
parents: 590
diff changeset
41 #if (!defined(__ICC) || __ICC > 1100) && AV_GCC_VERSION_AT_LEAST(4,2)
374
8805bba131a9 Add attribute that forces alignment of stack to functions that need it.
ramiro
parents: 366
diff changeset
42 # define attribute_align_arg __attribute__((force_align_arg_pointer))
8805bba131a9 Add attribute that forces alignment of stack to functions that need it.
ramiro
parents: 366
diff changeset
43 #else
8805bba131a9 Add attribute that forces alignment of stack to functions that need it.
ramiro
parents: 366
diff changeset
44 # define attribute_align_arg
8805bba131a9 Add attribute that forces alignment of stack to functions that need it.
ramiro
parents: 366
diff changeset
45 #endif
8805bba131a9 Add attribute that forces alignment of stack to functions that need it.
ramiro
parents: 366
diff changeset
46 #endif
8805bba131a9 Add attribute that forces alignment of stack to functions that need it.
ramiro
parents: 366
diff changeset
47
154
b94a48efd763 move some __attribute__ macros to internal.h
mru
parents: 152
diff changeset
48 #ifndef attribute_used
590
e9d89a89561a Use AV_GCC_VERSION_AT_LEAST() to simplify gcc version checks.
cehoyos
parents: 589
diff changeset
49 #if AV_GCC_VERSION_AT_LEAST(3,1)
154
b94a48efd763 move some __attribute__ macros to internal.h
mru
parents: 152
diff changeset
50 # define attribute_used __attribute__((used))
b94a48efd763 move some __attribute__ macros to internal.h
mru
parents: 152
diff changeset
51 #else
b94a48efd763 move some __attribute__ macros to internal.h
mru
parents: 152
diff changeset
52 # define attribute_used
b94a48efd763 move some __attribute__ macros to internal.h
mru
parents: 152
diff changeset
53 #endif
b94a48efd763 move some __attribute__ macros to internal.h
mru
parents: 152
diff changeset
54 #endif
b94a48efd763 move some __attribute__ macros to internal.h
mru
parents: 152
diff changeset
55
155
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
56 #ifndef INT16_MIN
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
57 #define INT16_MIN (-0x7fff-1)
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
58 #endif
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
59
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
60 #ifndef INT16_MAX
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
61 #define INT16_MAX 0x7fff
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
62 #endif
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
63
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
64 #ifndef INT32_MIN
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
65 #define INT32_MIN (-0x7fffffff-1)
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
66 #endif
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
67
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
68 #ifndef INT32_MAX
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
69 #define INT32_MAX 0x7fffffff
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
70 #endif
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
71
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
72 #ifndef UINT32_MAX
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
73 #define UINT32_MAX 0xffffffff
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
74 #endif
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
75
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
76 #ifndef INT64_MIN
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
77 #define INT64_MIN (-0x7fffffffffffffffLL-1)
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
78 #endif
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
79
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
80 #ifndef INT64_MAX
156
69e5b350225c use the standard INT64_C() macro for 64-bit constants
mru
parents: 155
diff changeset
81 #define INT64_MAX INT64_C(9223372036854775807)
155
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
82 #endif
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
83
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
84 #ifndef UINT64_MAX
156
69e5b350225c use the standard INT64_C() macro for 64-bit constants
mru
parents: 155
diff changeset
85 #define UINT64_MAX UINT64_C(0xFFFFFFFFFFFFFFFF)
155
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
86 #endif
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
87
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
88 #ifndef INT_BIT
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
89 # if INT_MAX != 2147483647
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
90 # define INT_BIT 64
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
91 # else
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
92 # define INT_BIT 32
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
93 # endif
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
94 #endif
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
95
57
4d00c7c7d07d Make ffmpeg better support pic - from Diego Petten <flameeyes@gentoo.org>
lu_zero
parents: 55
diff changeset
96 #if ( defined(__PIC__) || defined(__pic__) ) && ! defined(PIC)
4d00c7c7d07d Make ffmpeg better support pic - from Diego Petten <flameeyes@gentoo.org>
lu_zero
parents: 55
diff changeset
97 # define PIC
4d00c7c7d07d Make ffmpeg better support pic - from Diego Petten <flameeyes@gentoo.org>
lu_zero
parents: 55
diff changeset
98 #endif
4d00c7c7d07d Make ffmpeg better support pic - from Diego Petten <flameeyes@gentoo.org>
lu_zero
parents: 55
diff changeset
99
469
bdc8433d739e Add #include "config.h" to headers that need it.
diego
parents: 461
diff changeset
100 #include "config.h"
89
59433f391f2d do not include bswap.h in common.h for external programs, since the former
reimar
parents: 80
diff changeset
101
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
102 #ifndef offsetof
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
103 # define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F))
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
104 #endif
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
105
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
106 // Use rip-relative addressing if compiling PIC code on x86-64.
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 600
diff changeset
107 #if ARCH_X86_64 && defined(PIC)
487
9df3dec6f840 Split MANGLE macro into LOCAL_MANGLE AND EXTERN_PREFIX parts
diego
parents: 481
diff changeset
108 # define LOCAL_MANGLE(a) #a "(%%rip)"
473
e841859035a6 Simplify MANGLE macro preprocessor condition checks.
diego
parents: 472
diff changeset
109 #else
487
9df3dec6f840 Split MANGLE macro into LOCAL_MANGLE AND EXTERN_PREFIX parts
diego
parents: 481
diff changeset
110 # define LOCAL_MANGLE(a) #a
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
111 #endif
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
112
487
9df3dec6f840 Split MANGLE macro into LOCAL_MANGLE AND EXTERN_PREFIX parts
diego
parents: 481
diff changeset
113 #define MANGLE(a) EXTERN_PREFIX LOCAL_MANGLE(a)
9df3dec6f840 Split MANGLE macro into LOCAL_MANGLE AND EXTERN_PREFIX parts
diego
parents: 481
diff changeset
114
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
115 /* debug stuff */
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
116
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
117 /* dprintf macros */
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
118 #ifdef DEBUG
285
c529dbdea4f7 Give context to dprintf
mbardiaux
parents: 283
diff changeset
119 # define dprintf(pctx, ...) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__)
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
120 #else
285
c529dbdea4f7 Give context to dprintf
mbardiaux
parents: 283
diff changeset
121 # define dprintf(pctx, ...)
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
122 #endif
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
123
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
124 #define av_abort() do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0)
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
125
143
bec4c3d175da move comment
mru
parents: 139
diff changeset
126 /* math */
bec4c3d175da move comment
mru
parents: 139
diff changeset
127
134
c47a9bfc9437 rename inverse -> ff_inverse
mru
parents: 125
diff changeset
128 extern const uint32_t ff_inverse[256];
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
129
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 600
diff changeset
130 #if ARCH_X86
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
131 # define FASTDIV(a,b) \
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
132 ({\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
133 int ret,dmy;\
578
b20a4eb68876 Convert asm keyword into __asm__.
flameeyes
parents: 569
diff changeset
134 __asm__ volatile(\
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
135 "mull %3"\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
136 :"=d"(ret),"=a"(dmy)\
134
c47a9bfc9437 rename inverse -> ff_inverse
mru
parents: 125
diff changeset
137 :"1"(a),"g"(ff_inverse[b])\
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
138 );\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
139 ret;\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
140 })
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 600
diff changeset
141 #elif HAVE_ARMV6
523
821a387baf9d ARM: ARMv6 optimised FASTDIV
mru
parents: 517
diff changeset
142 static inline av_const int FASTDIV(int a, int b)
821a387baf9d ARM: ARMv6 optimised FASTDIV
mru
parents: 517
diff changeset
143 {
583
9277793841bb ARM: faster ARMv6 FASTDIV()
mru
parents: 578
diff changeset
144 int r, t;
9277793841bb ARM: faster ARMv6 FASTDIV()
mru
parents: 578
diff changeset
145 __asm__ volatile("cmp %3, #2 \n\t"
9277793841bb ARM: faster ARMv6 FASTDIV()
mru
parents: 578
diff changeset
146 "ldr %1, [%4, %3, lsl #2] \n\t"
9277793841bb ARM: faster ARMv6 FASTDIV()
mru
parents: 578
diff changeset
147 "lsrle %0, %2, #1 \n\t"
9277793841bb ARM: faster ARMv6 FASTDIV()
mru
parents: 578
diff changeset
148 "smmulgt %0, %1, %2 \n\t"
9277793841bb ARM: faster ARMv6 FASTDIV()
mru
parents: 578
diff changeset
149 : "=&r"(r), "=&r"(t) : "r"(a), "r"(b), "r"(ff_inverse));
523
821a387baf9d ARM: ARMv6 optimised FASTDIV
mru
parents: 517
diff changeset
150 return r;
821a387baf9d ARM: ARMv6 optimised FASTDIV
mru
parents: 517
diff changeset
151 }
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 600
diff changeset
152 #elif ARCH_ARM
589
9dd4312d8a4d ARM: make FASTDIV() an inline function
mru
parents: 588
diff changeset
153 static inline av_const int FASTDIV(int a, int b)
9dd4312d8a4d ARM: make FASTDIV() an inline function
mru
parents: 588
diff changeset
154 {
9dd4312d8a4d ARM: make FASTDIV() an inline function
mru
parents: 588
diff changeset
155 int r, t;
9dd4312d8a4d ARM: make FASTDIV() an inline function
mru
parents: 588
diff changeset
156 __asm__ volatile ("umull %1, %0, %2, %3"
9dd4312d8a4d ARM: make FASTDIV() an inline function
mru
parents: 588
diff changeset
157 : "=&r"(r), "=&r"(t) : "r"(a), "r"(ff_inverse[b]));
9dd4312d8a4d ARM: make FASTDIV() an inline function
mru
parents: 588
diff changeset
158 return r;
9dd4312d8a4d ARM: make FASTDIV() an inline function
mru
parents: 588
diff changeset
159 }
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 600
diff changeset
160 #elif CONFIG_FASTDIV
134
c47a9bfc9437 rename inverse -> ff_inverse
mru
parents: 125
diff changeset
161 # define FASTDIV(a,b) ((uint32_t)((((uint64_t)a)*ff_inverse[b])>>32))
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
162 #else
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
163 # define FASTDIV(a,b) ((a)/(b))
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
164 #endif
12
ce8f9f4390c3 COSMETICS: Remove all trailing whitespace.
diego
parents: 11
diff changeset
165
432
dcb08e8f3b2e Faster ff_sqrt()
michael
parents: 431
diff changeset
166 extern const uint8_t ff_sqrt_tab[256];
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
167
481
f4187c1c15a6 Reapply r12489: Add pure, const and malloc attributes to proper functions
zuxy
parents: 478
diff changeset
168 static inline av_const unsigned int ff_sqrt(unsigned int a)
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
169 {
432
dcb08e8f3b2e Faster ff_sqrt()
michael
parents: 431
diff changeset
170 unsigned int b;
12
ce8f9f4390c3 COSMETICS: Remove all trailing whitespace.
diego
parents: 11
diff changeset
171
432
dcb08e8f3b2e Faster ff_sqrt()
michael
parents: 431
diff changeset
172 if(a<255) return (ff_sqrt_tab[a+1]-1)>>4;
dcb08e8f3b2e Faster ff_sqrt()
michael
parents: 431
diff changeset
173 else if(a<(1<<12)) b= ff_sqrt_tab[a>>4 ]>>2;
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 600
diff changeset
174 #if !CONFIG_SMALL
432
dcb08e8f3b2e Faster ff_sqrt()
michael
parents: 431
diff changeset
175 else if(a<(1<<14)) b= ff_sqrt_tab[a>>6 ]>>1;
dcb08e8f3b2e Faster ff_sqrt()
michael
parents: 431
diff changeset
176 else if(a<(1<<16)) b= ff_sqrt_tab[a>>8 ] ;
dcb08e8f3b2e Faster ff_sqrt()
michael
parents: 431
diff changeset
177 #endif
dcb08e8f3b2e Faster ff_sqrt()
michael
parents: 431
diff changeset
178 else{
dcb08e8f3b2e Faster ff_sqrt()
michael
parents: 431
diff changeset
179 int s= av_log2_16bit(a>>16)>>1;
dcb08e8f3b2e Faster ff_sqrt()
michael
parents: 431
diff changeset
180 unsigned int c= a>>(s+2);
dcb08e8f3b2e Faster ff_sqrt()
michael
parents: 431
diff changeset
181 b= ff_sqrt_tab[c>>(s+8)];
dcb08e8f3b2e Faster ff_sqrt()
michael
parents: 431
diff changeset
182 b= FASTDIV(c,b) + (b<<s);
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
183 }
432
dcb08e8f3b2e Faster ff_sqrt()
michael
parents: 431
diff changeset
184
dcb08e8f3b2e Faster ff_sqrt()
michael
parents: 431
diff changeset
185 return b - (a<b*b);
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
186 }
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
187
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 600
diff changeset
188 #if ARCH_X86
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
189 #define MASK_ABS(mask, level)\
578
b20a4eb68876 Convert asm keyword into __asm__.
flameeyes
parents: 569
diff changeset
190 __asm__ volatile(\
461
62530c1673a0 Use cltd instead of cdq asm mnemonic, ICC and gcc support both, but
reimar
parents: 432
diff changeset
191 "cltd \n\t"\
13
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
192 "xorl %1, %0 \n\t"\
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
193 "subl %1, %0 \n\t"\
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
194 : "+a" (level), "=&d" (mask)\
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
195 );
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
196 #else
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
197 #define MASK_ABS(mask, level)\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
198 mask= level>>31;\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
199 level= (level^mask)-mask;
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
200 #endif
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
201
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 600
diff changeset
202 #if HAVE_CMOV
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
203 #define COPY3_IF_LT(x,y,a,b,c,d)\
578
b20a4eb68876 Convert asm keyword into __asm__.
flameeyes
parents: 569
diff changeset
204 __asm__ volatile (\
13
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
205 "cmpl %0, %3 \n\t"\
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
206 "cmovl %3, %0 \n\t"\
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
207 "cmovl %4, %1 \n\t"\
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
208 "cmovl %5, %2 \n\t"\
323
0e5545f9a454 Add first and second output to earlyclobbers in COPY3_IF_LT macro.
diego
parents: 321
diff changeset
209 : "+&r" (x), "+&r" (a), "+r" (c)\
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
210 : "r" (y), "r" (b), "r" (d)\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
211 );
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
212 #else
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
213 #define COPY3_IF_LT(x,y,a,b,c,d)\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
214 if((y)<(x)){\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
215 (x)=(y);\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
216 (a)=(b);\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
217 (c)=(d);\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
218 }
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
219 #endif
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
220
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
221 /* avoid usage of various functions */
359
b951d460bcb4 undef forbidden names before we #define them in case they are macros in libc
mru
parents: 355
diff changeset
222 #undef malloc
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
223 #define malloc please_use_av_malloc
359
b951d460bcb4 undef forbidden names before we #define them in case they are macros in libc
mru
parents: 355
diff changeset
224 #undef free
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
225 #define free please_use_av_free
359
b951d460bcb4 undef forbidden names before we #define them in case they are macros in libc
mru
parents: 355
diff changeset
226 #undef realloc
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
227 #define realloc please_use_av_realloc
359
b951d460bcb4 undef forbidden names before we #define them in case they are macros in libc
mru
parents: 355
diff changeset
228 #undef time
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
229 #define time time_is_forbidden_due_to_security_issues
359
b951d460bcb4 undef forbidden names before we #define them in case they are macros in libc
mru
parents: 355
diff changeset
230 #undef rand
355
74b190a612c3 Make error message more helpful and forbid random()
vitor
parents: 353
diff changeset
231 #define rand rand_is_forbidden_due_to_state_trashing_use_av_random
359
b951d460bcb4 undef forbidden names before we #define them in case they are macros in libc
mru
parents: 355
diff changeset
232 #undef srand
611
a837b715e7d6 Replace calls to the deprecated function av_init_random() with
stefano
parents: 605
diff changeset
233 #define srand srand_is_forbidden_due_to_state_trashing_use_av_random_init
359
b951d460bcb4 undef forbidden names before we #define them in case they are macros in libc
mru
parents: 355
diff changeset
234 #undef random
355
74b190a612c3 Make error message more helpful and forbid random()
vitor
parents: 353
diff changeset
235 #define random random_is_forbidden_due_to_state_trashing_use_av_random
359
b951d460bcb4 undef forbidden names before we #define them in case they are macros in libc
mru
parents: 355
diff changeset
236 #undef sprintf
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
237 #define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf
359
b951d460bcb4 undef forbidden names before we #define them in case they are macros in libc
mru
parents: 355
diff changeset
238 #undef strcat
349
bba4d248d13a more av_strl* adjustments
reimar
parents: 343
diff changeset
239 #define strcat strcat_is_forbidden_due_to_security_issues_use_av_strlcat
359
b951d460bcb4 undef forbidden names before we #define them in case they are macros in libc
mru
parents: 355
diff changeset
240 #undef exit
321
39cdbea1a8f1 prevent exit missuse
michael
parents: 285
diff changeset
241 #define exit exit_is_forbidden
569
165ae9e8f4fb Remove wrong and unnecessary condition. VHOOK filters are not special
stefano
parents: 567
diff changeset
242 #ifndef LIBAVFORMAT_BUILD
359
b951d460bcb4 undef forbidden names before we #define them in case they are macros in libc
mru
parents: 355
diff changeset
243 #undef printf
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
244 #define printf please_use_av_log
359
b951d460bcb4 undef forbidden names before we #define them in case they are macros in libc
mru
parents: 355
diff changeset
245 #undef fprintf
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
246 #define fprintf please_use_av_log
431
fa6c031f2a57 Disallow puts(), av_log() should be used instead.
diego
parents: 411
diff changeset
247 #undef puts
fa6c031f2a57 Disallow puts(), av_log() should be used instead.
diego
parents: 411
diff changeset
248 #define puts please_use_av_log
403
c22fbe7d64cf Generate a linking error if perror() is used in libav*
lucabe
parents: 402
diff changeset
249 #undef perror
c22fbe7d64cf Generate a linking error if perror() is used in libav*
lucabe
parents: 402
diff changeset
250 #define perror please_use_av_log_instead_of_perror
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
251 #endif
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
252
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
253 #define CHECKED_ALLOCZ(p, size)\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
254 {\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
255 p= av_mallocz(size);\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
256 if(p==NULL && (size)!=0){\
402
eea6f94a791b Remove perror() usage from libavutil
lucabe
parents: 395
diff changeset
257 av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.");\
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
258 goto fail;\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
259 }\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
260 }
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
261
622
2ff7ac1e95dd Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h.
diego
parents: 620
diff changeset
262 #if defined(__ICC) || defined(__SUNPRO_C)
2ff7ac1e95dd Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h.
diego
parents: 620
diff changeset
263 #define DECLARE_ALIGNED(n,t,v) t v __attribute__ ((aligned (n)))
2ff7ac1e95dd Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h.
diego
parents: 620
diff changeset
264 #define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
2ff7ac1e95dd Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h.
diego
parents: 620
diff changeset
265 #elif defined(__GNUC__)
2ff7ac1e95dd Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h.
diego
parents: 620
diff changeset
266 #define DECLARE_ALIGNED(n,t,v) t v __attribute__ ((aligned (n)))
2ff7ac1e95dd Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h.
diego
parents: 620
diff changeset
267 #define DECLARE_ASM_CONST(n,t,v) static const t v attribute_used __attribute__ ((aligned (n)))
625
ddcfe921388f Restore _MSC_VER case in DECLARE_ALIGNED/DECLARE_ASM_CONST macro declaration.
diego
parents: 624
diff changeset
268 #elif defined(_MSC_VER)
ddcfe921388f Restore _MSC_VER case in DECLARE_ALIGNED/DECLARE_ASM_CONST macro declaration.
diego
parents: 624
diff changeset
269 #define DECLARE_ALIGNED(n,t,v) __declspec(align(n)) t v
ddcfe921388f Restore _MSC_VER case in DECLARE_ALIGNED/DECLARE_ASM_CONST macro declaration.
diego
parents: 624
diff changeset
270 #define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v
622
2ff7ac1e95dd Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h.
diego
parents: 620
diff changeset
271 #elif HAVE_INLINE_ASM
2ff7ac1e95dd Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h.
diego
parents: 620
diff changeset
272 #error The asm code needs alignment, but we do not know how to do it for this compiler.
2ff7ac1e95dd Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h.
diego
parents: 620
diff changeset
273 #else
2ff7ac1e95dd Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h.
diego
parents: 620
diff changeset
274 #define DECLARE_ALIGNED(n,t,v) t v
2ff7ac1e95dd Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h.
diego
parents: 620
diff changeset
275 #define DECLARE_ASM_CONST(n,t,v) static const t v
2ff7ac1e95dd Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h.
diego
parents: 620
diff changeset
276 #endif
2ff7ac1e95dd Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h.
diego
parents: 620
diff changeset
277
2ff7ac1e95dd Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h.
diego
parents: 620
diff changeset
278
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 600
diff changeset
279 #if !HAVE_LLRINT
481
f4187c1c15a6 Reapply r12489: Add pure, const and malloc attributes to proper functions
zuxy
parents: 478
diff changeset
280 static av_always_inline av_const long long llrint(double x)
411
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
281 {
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
282 return rint(x);
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
283 }
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
284 #endif /* HAVE_LLRINT */
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
285
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 600
diff changeset
286 #if !HAVE_LRINT
481
f4187c1c15a6 Reapply r12489: Add pure, const and malloc attributes to proper functions
zuxy
parents: 478
diff changeset
287 static av_always_inline av_const long int lrint(double x)
411
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
288 {
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
289 return rint(x);
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
290 }
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
291 #endif /* HAVE_LRINT */
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
292
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 600
diff changeset
293 #if !HAVE_LRINTF
481
f4187c1c15a6 Reapply r12489: Add pure, const and malloc attributes to proper functions
zuxy
parents: 478
diff changeset
294 static av_always_inline av_const long int lrintf(float x)
4
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
295 {
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
296 return (int)(rint(x));
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
297 }
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
298 #endif /* HAVE_LRINTF */
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
299
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 600
diff changeset
300 #if !HAVE_ROUND
481
f4187c1c15a6 Reapply r12489: Add pure, const and malloc attributes to proper functions
zuxy
parents: 478
diff changeset
301 static av_always_inline av_const double round(double x)
411
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
302 {
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
303 return (x > 0) ? floor(x + 0.5) : ceil(x - 0.5);
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
304 }
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
305 #endif /* HAVE_ROUND */
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
306
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 600
diff changeset
307 #if !HAVE_ROUNDF
481
f4187c1c15a6 Reapply r12489: Add pure, const and malloc attributes to proper functions
zuxy
parents: 478
diff changeset
308 static av_always_inline av_const float roundf(float x)
411
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
309 {
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
310 return (x > 0) ? floor(x + 0.5) : ceil(x - 0.5);
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
311 }
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
312 #endif /* HAVE_ROUNDF */
d25e027364d6 Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents: 410
diff changeset
313
603
880c6441f56a Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 600
diff changeset
314 #if !HAVE_TRUNCF
600
198d4fd6541d Add truncf() replacement function.
ramiro
parents: 598
diff changeset
315 static av_always_inline av_const float truncf(float x)
198d4fd6541d Add truncf() replacement function.
ramiro
parents: 598
diff changeset
316 {
198d4fd6541d Add truncf() replacement function.
ramiro
parents: 598
diff changeset
317 return (x > 0) ? floor(x) : ceil(x);
198d4fd6541d Add truncf() replacement function.
ramiro
parents: 598
diff changeset
318 }
198d4fd6541d Add truncf() replacement function.
ramiro
parents: 598
diff changeset
319 #endif /* HAVE_TRUNCF */
198d4fd6541d Add truncf() replacement function.
ramiro
parents: 598
diff changeset
320
605
5d605aafa09d move NULL_IF_CONFIG_SMALL() definition into internal header
aurel
parents: 604
diff changeset
321 /**
5d605aafa09d move NULL_IF_CONFIG_SMALL() definition into internal header
aurel
parents: 604
diff changeset
322 * Returns NULL if CONFIG_SMALL is true otherwise the argument
5d605aafa09d move NULL_IF_CONFIG_SMALL() definition into internal header
aurel
parents: 604
diff changeset
323 * without modifications, used to disable the definition of strings
5d605aafa09d move NULL_IF_CONFIG_SMALL() definition into internal header
aurel
parents: 604
diff changeset
324 * (for example AVCodec long_names).
5d605aafa09d move NULL_IF_CONFIG_SMALL() definition into internal header
aurel
parents: 604
diff changeset
325 */
5d605aafa09d move NULL_IF_CONFIG_SMALL() definition into internal header
aurel
parents: 604
diff changeset
326 #if CONFIG_SMALL
5d605aafa09d move NULL_IF_CONFIG_SMALL() definition into internal header
aurel
parents: 604
diff changeset
327 # define NULL_IF_CONFIG_SMALL(x) NULL
5d605aafa09d move NULL_IF_CONFIG_SMALL() definition into internal header
aurel
parents: 604
diff changeset
328 #else
5d605aafa09d move NULL_IF_CONFIG_SMALL() definition into internal header
aurel
parents: 604
diff changeset
329 # define NULL_IF_CONFIG_SMALL(x) x
5d605aafa09d move NULL_IF_CONFIG_SMALL() definition into internal header
aurel
parents: 604
diff changeset
330 #endif
5d605aafa09d move NULL_IF_CONFIG_SMALL() definition into internal header
aurel
parents: 604
diff changeset
331
567
bd4052d9050c Globally rename the header inclusion guard names.
stefano
parents: 549
diff changeset
332 #endif /* AVUTIL_INTERNAL_H */