annotate internal.h @ 343:f21d1907d47c libavutil

include all prerequisites in header files
author mru
date Sat, 16 Jun 2007 22:59:13 +0000
parents ae8a3be2db3b
children bba4d248d13a
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
80
624fc3ad183a Split common.h in two parts, purely internal stuff (internal.h) and things
reimar
parents: 75
diff changeset
26 #ifndef INTERNAL_H
624fc3ad183a Split common.h in two parts, purely internal stuff (internal.h) and things
reimar
parents: 75
diff changeset
27 #define INTERNAL_H
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
28
343
f21d1907d47c include all prerequisites in header files
mru
parents: 340
diff changeset
29 #include <stdint.h>
f21d1907d47c include all prerequisites in header files
mru
parents: 340
diff changeset
30 #include <assert.h>
f21d1907d47c include all prerequisites in header files
mru
parents: 340
diff changeset
31
154
b94a48efd763 move some __attribute__ macros to internal.h
mru
parents: 152
diff changeset
32 #ifndef attribute_used
b94a48efd763 move some __attribute__ macros to internal.h
mru
parents: 152
diff changeset
33 #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
b94a48efd763 move some __attribute__ macros to internal.h
mru
parents: 152
diff changeset
34 # define attribute_used __attribute__((used))
b94a48efd763 move some __attribute__ macros to internal.h
mru
parents: 152
diff changeset
35 #else
b94a48efd763 move some __attribute__ macros to internal.h
mru
parents: 152
diff changeset
36 # define attribute_used
b94a48efd763 move some __attribute__ macros to internal.h
mru
parents: 152
diff changeset
37 #endif
b94a48efd763 move some __attribute__ macros to internal.h
mru
parents: 152
diff changeset
38 #endif
b94a48efd763 move some __attribute__ macros to internal.h
mru
parents: 152
diff changeset
39
155
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
40 #ifndef M_PI
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
41 #define M_PI 3.14159265358979323846
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
42 #endif
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
43
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
44 #ifndef INT16_MIN
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
45 #define INT16_MIN (-0x7fff-1)
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
46 #endif
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
47
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
48 #ifndef INT16_MAX
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
49 #define INT16_MAX 0x7fff
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
50 #endif
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
51
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
52 #ifndef INT32_MIN
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
53 #define INT32_MIN (-0x7fffffff-1)
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
54 #endif
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
55
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
56 #ifndef INT32_MAX
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
57 #define INT32_MAX 0x7fffffff
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 UINT32_MAX
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
61 #define UINT32_MAX 0xffffffff
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 INT64_MIN
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
65 #define INT64_MIN (-0x7fffffffffffffffLL-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 INT64_MAX
156
69e5b350225c use the standard INT64_C() macro for 64-bit constants
mru
parents: 155
diff changeset
69 #define INT64_MAX INT64_C(9223372036854775807)
155
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 UINT64_MAX
156
69e5b350225c use the standard INT64_C() macro for 64-bit constants
mru
parents: 155
diff changeset
73 #define UINT64_MAX UINT64_C(0xFFFFFFFFFFFFFFFF)
155
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 INT_BIT
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
77 # if INT_MAX != 2147483647
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
78 # define INT_BIT 64
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
79 # else
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
80 # define INT_BIT 32
5d849a1c0d4d move more macros to internal.h
mru
parents: 154
diff changeset
81 # endif
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
57
4d00c7c7d07d Make ffmpeg better support pic - from Diego Petten <flameeyes@gentoo.org>
lu_zero
parents: 55
diff changeset
84 #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
85 # define PIC
4d00c7c7d07d Make ffmpeg better support pic - from Diego Petten <flameeyes@gentoo.org>
lu_zero
parents: 55
diff changeset
86 #endif
4d00c7c7d07d Make ffmpeg better support pic - from Diego Petten <flameeyes@gentoo.org>
lu_zero
parents: 55
diff changeset
87
152
5b211d03227b Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents: 143
diff changeset
88 #include "intreadwrite.h"
89
59433f391f2d do not include bswap.h in common.h for external programs, since the former
reimar
parents: 80
diff changeset
89 #include "bswap.h"
59433f391f2d do not include bswap.h in common.h for external programs, since the former
reimar
parents: 80
diff changeset
90
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
91 #include <stddef.h>
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
92 #ifndef offsetof
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
93 # 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
94 #endif
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
95
74
a298a8eae4f2 simplify
mru
parents: 73
diff changeset
96 #ifdef __MINGW32__
75
mru
parents: 74
diff changeset
97 # ifdef _DEBUG
mru
parents: 74
diff changeset
98 # define DEBUG
mru
parents: 74
diff changeset
99 # endif
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
100
75
mru
parents: 74
diff changeset
101 # define snprintf _snprintf
mru
parents: 74
diff changeset
102 # define vsnprintf _vsnprintf
19
2a55eb7ca57b WinCE cross-compilation support
diego
parents: 13
diff changeset
103
66
c619660c74ab CONFIG_WIN32 implies MinGW and Cygwin and possibly more, so use just
diego
parents: 65
diff changeset
104 /* __MINGW32__ end */
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
105 #elif defined (CONFIG_OS2)
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
106 /* OS/2 EMX */
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
107
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
108 # include <float.h>
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
109
73
9718c0d015cc simplify
mru
parents: 72
diff changeset
110 #endif /* !__MINGW32__ && CONFIG_OS2 */
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
111
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
112 #ifdef USE_FASTMEMCPY
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
113 # include "libvo/fastmemcpy.h"
340
ae8a3be2db3b Part of MPlayer patch:
reimar
parents: 339
diff changeset
114 # define memcpy(a,b,c) fast_memcpy(a,b,c)
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
115 #endif
0
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 // Use rip-relative addressing if compiling PIC code on x86-64.
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
118 #if defined(__MINGW32__) || defined(__CYGWIN__) || \
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
119 defined(__OS2__) || (defined (__OpenBSD__) && !defined(__ELF__))
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
120 # if defined(ARCH_X86_64) && defined(PIC)
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
121 # define MANGLE(a) "_" #a"(%%rip)"
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
122 # else
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
123 # define MANGLE(a) "_" #a
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
124 # endif
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
125 #else
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
126 # if defined(ARCH_X86_64) && defined(PIC)
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
127 # define MANGLE(a) #a"(%%rip)"
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
128 # elif defined(CONFIG_DARWIN)
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
129 # define MANGLE(a) "_" #a
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
130 # else
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
131 # define MANGLE(a) #a
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
132 # endif
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
133 #endif
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
134
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
135 /* debug stuff */
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
136
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
137 #if !defined(DEBUG) && !defined(NDEBUG)
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
138 # define NDEBUG
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
139 #endif
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
140 #include <assert.h>
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
141
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
142 /* dprintf macros */
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
143 #ifdef DEBUG
285
c529dbdea4f7 Give context to dprintf
mbardiaux
parents: 283
diff changeset
144 # define dprintf(pctx, ...) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__)
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
145 #else
285
c529dbdea4f7 Give context to dprintf
mbardiaux
parents: 283
diff changeset
146 # define dprintf(pctx, ...)
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
147 #endif
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
148
138
e8767b5a5fdb indentation
mru
parents: 134
diff changeset
149 #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
150
143
bec4c3d175da move comment
mru
parents: 139
diff changeset
151 /* math */
bec4c3d175da move comment
mru
parents: 139
diff changeset
152
134
c47a9bfc9437 rename inverse -> ff_inverse
mru
parents: 125
diff changeset
153 extern const uint32_t ff_inverse[256];
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
154
125
172cf2494db7 Use common define for x86_32 and x86_64.
diego
parents: 124
diff changeset
155 #if defined(ARCH_X86)
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
156 # define FASTDIV(a,b) \
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
157 ({\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
158 int ret,dmy;\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
159 asm volatile(\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
160 "mull %3"\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
161 :"=d"(ret),"=a"(dmy)\
134
c47a9bfc9437 rename inverse -> ff_inverse
mru
parents: 125
diff changeset
162 :"1"(a),"g"(ff_inverse[b])\
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
163 );\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
164 ret;\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
165 })
114
37779851c665 add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents: 108
diff changeset
166 #elif defined(ARCH_ARMV4L)
37779851c665 add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents: 108
diff changeset
167 # define FASTDIV(a,b) \
37779851c665 add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents: 108
diff changeset
168 ({\
37779851c665 add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents: 108
diff changeset
169 int ret,dmy;\
37779851c665 add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents: 108
diff changeset
170 asm volatile(\
37779851c665 add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents: 108
diff changeset
171 "umull %1, %0, %2, %3"\
37779851c665 add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents: 108
diff changeset
172 :"=&r"(ret),"=&r"(dmy)\
134
c47a9bfc9437 rename inverse -> ff_inverse
mru
parents: 125
diff changeset
173 :"r"(a),"r"(ff_inverse[b])\
114
37779851c665 add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents: 108
diff changeset
174 );\
37779851c665 add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents: 108
diff changeset
175 ret;\
37779851c665 add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents: 108
diff changeset
176 })
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
177 #elif defined(CONFIG_FASTDIV)
134
c47a9bfc9437 rename inverse -> ff_inverse
mru
parents: 125
diff changeset
178 # 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
179 #else
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
180 # define FASTDIV(a,b) ((a)/(b))
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
181 #endif
12
ce8f9f4390c3 COSMETICS: Remove all trailing whitespace.
diego
parents: 11
diff changeset
182
157
d96dae9bdcaa fix mingw shared build, and get rid of FF_IMPORT_ATTR
mru
parents: 156
diff changeset
183 extern const uint8_t ff_sqrt_tab[128];
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
184
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
185 static inline int ff_sqrt(int a)
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 int ret=0;
334
d4ccc9609aa9 reduce number of shifts
michael
parents: 333
diff changeset
188 int s, b;
12
ce8f9f4390c3 COSMETICS: Remove all trailing whitespace.
diego
parents: 11
diff changeset
189
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
190 if(a<128) return ff_sqrt_tab[a];
12
ce8f9f4390c3 COSMETICS: Remove all trailing whitespace.
diego
parents: 11
diff changeset
191
334
d4ccc9609aa9 reduce number of shifts
michael
parents: 333
diff changeset
192 for(s=30; s>=0; s-=2){
d4ccc9609aa9 reduce number of shifts
michael
parents: 333
diff changeset
193 ret+=ret;
d4ccc9609aa9 reduce number of shifts
michael
parents: 333
diff changeset
194 b= (1+2*ret)<<s;
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
195 if(b<=a){
333
893380ba2425 simplify
michael
parents: 324
diff changeset
196 a-=b;
334
d4ccc9609aa9 reduce number of shifts
michael
parents: 333
diff changeset
197 ret++;
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
198 }
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
199 }
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
200 return ret;
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
201 }
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
202
125
172cf2494db7 Use common define for x86_32 and x86_64.
diego
parents: 124
diff changeset
203 #if defined(ARCH_X86)
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
204 #define MASK_ABS(mask, level)\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
205 asm volatile(\
13
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
206 "cdq \n\t"\
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
207 "xorl %1, %0 \n\t"\
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
208 "subl %1, %0 \n\t"\
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
209 : "+a" (level), "=&d" (mask)\
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
210 );
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
211 #else
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
212 #define MASK_ABS(mask, level)\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
213 mask= level>>31;\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
214 level= (level^mask)-mask;
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
215 #endif
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
216
121
69714d5e1561 Protect code that uses CMOV instructions with HAVE_CMOV,
gpoirier
parents: 116
diff changeset
217 #ifdef HAVE_CMOV
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
218 #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
219 asm volatile (\
13
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
220 "cmpl %0, %3 \n\t"\
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
221 "cmovl %3, %0 \n\t"\
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
222 "cmovl %4, %1 \n\t"\
aedb6bd881b9 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 12
diff changeset
223 "cmovl %5, %2 \n\t"\
323
0e5545f9a454 Add first and second output to earlyclobbers in COPY3_IF_LT macro.
diego
parents: 321
diff changeset
224 : "+&r" (x), "+&r" (a), "+r" (c)\
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
225 : "r" (y), "r" (b), "r" (d)\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
226 );
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
227 #else
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
228 #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
229 if((y)<(x)){\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
230 (x)=(y);\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
231 (a)=(b);\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
232 (c)=(d);\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
233 }
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
234 #endif
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
235
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
236 /* avoid usage of various functions */
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
237 #define malloc please_use_av_malloc
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
238 #define free please_use_av_free
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
239 #define realloc please_use_av_realloc
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
240 #define time time_is_forbidden_due_to_security_issues
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
241 #define rand rand_is_forbidden_due_to_state_trashing
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
242 #define srand srand_is_forbidden_due_to_state_trashing
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
243 #define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
244 #define strcat strcat_is_forbidden_due_to_security_issues_use_pstrcat
321
39cdbea1a8f1 prevent exit missuse
michael
parents: 285
diff changeset
245 #define exit exit_is_forbidden
0
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
246 #if !(defined(LIBAVFORMAT_BUILD) || defined(_FRAMEHOOK_H))
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
247 #define printf please_use_av_log
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
248 #define fprintf please_use_av_log
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
249 #endif
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
250
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
251 #define CHECKED_ALLOCZ(p, size)\
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 p= av_mallocz(size);\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
254 if(p==NULL && (size)!=0){\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
255 perror("malloc");\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
256 goto fail;\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
257 }\
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
258 }
ee8f44bb7c4d libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff changeset
259
4
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
260 #ifndef HAVE_LRINTF
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
261 /* XXX: add ISOC specific test to avoid specific BSD testing. */
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
262 /* better than nothing implementation. */
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
263 /* btw, rintf() is existing on fbsd too -- alex */
159
039198e96ee2 rename always_inline to av_always_inline and move to common.h
mru
parents: 157
diff changeset
264 static av_always_inline long int lrintf(float x)
4
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
265 {
66
c619660c74ab CONFIG_WIN32 implies MinGW and Cygwin and possibly more, so use just
diego
parents: 65
diff changeset
266 #ifdef __MINGW32__
124
bd1ecfd747bc Add ARCH_X86_32 as a new define for 32 bit x86 architectures and change
diego
parents: 121
diff changeset
267 # ifdef ARCH_X86_32
4
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
268 int32_t i;
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
269 asm volatile(
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
270 "fistpl %0\n\t"
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
271 : "=m" (i) : "t" (x) : "st"
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
272 );
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
273 return i;
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
274 # else
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
275 /* XXX: incorrect, but make it compile */
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
276 return (int)(x + (x < 0 ? -0.5 : 0.5));
124
bd1ecfd747bc Add ARCH_X86_32 as a new define for 32 bit x86 architectures and change
diego
parents: 121
diff changeset
277 # endif /* ARCH_X86_32 */
4
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
278 #else
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
279 return (int)(rint(x));
66
c619660c74ab CONFIG_WIN32 implies MinGW and Cygwin and possibly more, so use just
diego
parents: 65
diff changeset
280 #endif /* __MINGW32__ */
4
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
281 }
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
282 #endif /* HAVE_LRINTF */
26a00aee5eac Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents: 3
diff changeset
283
80
624fc3ad183a Split common.h in two parts, purely internal stuff (internal.h) and things
reimar
parents: 75
diff changeset
284 #endif /* INTERNAL_H */