]> git.sesse.net Git - ffmpeg/blob - libavcodec/mathops.h
Update 8-bit H.264 IDCT function names to reflect bit-depth.
[ffmpeg] / libavcodec / mathops.h
1 /*
2  * simple math operations
3  * Copyright (c) 2001, 2002 Fabrice Bellard
4  * Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> et al
5  *
6  * This file is part of Libav.
7  *
8  * Libav is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * Libav is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with Libav; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 #ifndef AVCODEC_MATHOPS_H
23 #define AVCODEC_MATHOPS_H
24
25 #include "libavutil/common.h"
26
27 #if   ARCH_ARM
28 #   include "arm/mathops.h"
29 #elif ARCH_AVR32
30 #   include "avr32/mathops.h"
31 #elif ARCH_BFIN
32 #   include "bfin/mathops.h"
33 #elif ARCH_MIPS
34 #   include "mips/mathops.h"
35 #elif ARCH_PPC
36 #   include "ppc/mathops.h"
37 #elif ARCH_X86
38 #   include "x86/mathops.h"
39 #endif
40
41 /* generic implementation */
42
43 #ifndef MULL
44 #   define MULL(a,b,s) (((int64_t)(a) * (int64_t)(b)) >> (s))
45 #endif
46
47 #ifndef MULH
48 static av_always_inline int MULH(int a, int b){
49     return ((int64_t)(a) * (int64_t)(b))>>32;
50 }
51 #endif
52
53 #ifndef UMULH
54 static av_always_inline unsigned UMULH(unsigned a, unsigned b){
55     return ((uint64_t)(a) * (uint64_t)(b))>>32;
56 }
57 #endif
58
59 #ifndef MUL64
60 #   define MUL64(a,b) ((int64_t)(a) * (int64_t)(b))
61 #endif
62
63 #ifndef MAC64
64 #   define MAC64(d, a, b) ((d) += MUL64(a, b))
65 #endif
66
67 #ifndef MLS64
68 #   define MLS64(d, a, b) ((d) -= MUL64(a, b))
69 #endif
70
71 /* signed 16x16 -> 32 multiply add accumulate */
72 #ifndef MAC16
73 #   define MAC16(rt, ra, rb) rt += (ra) * (rb)
74 #endif
75
76 /* signed 16x16 -> 32 multiply */
77 #ifndef MUL16
78 #   define MUL16(ra, rb) ((ra) * (rb))
79 #endif
80
81 #ifndef MLS16
82 #   define MLS16(rt, ra, rb) ((rt) -= (ra) * (rb))
83 #endif
84
85 /* median of 3 */
86 #ifndef mid_pred
87 #define mid_pred mid_pred
88 static inline av_const int mid_pred(int a, int b, int c)
89 {
90 #if 0
91     int t= (a-b)&((a-b)>>31);
92     a-=t;
93     b+=t;
94     b-= (b-c)&((b-c)>>31);
95     b+= (a-b)&((a-b)>>31);
96
97     return b;
98 #else
99     if(a>b){
100         if(c>b){
101             if(c>a) b=a;
102             else    b=c;
103         }
104     }else{
105         if(b>c){
106             if(c>a) b=c;
107             else    b=a;
108         }
109     }
110     return b;
111 #endif
112 }
113 #endif
114
115 #ifndef sign_extend
116 static inline av_const int sign_extend(int val, unsigned bits)
117 {
118     return (val << ((8 * sizeof(int)) - bits)) >> ((8 * sizeof(int)) - bits);
119 }
120 #endif
121
122 #ifndef zero_extend
123 static inline av_const unsigned zero_extend(unsigned val, unsigned bits)
124 {
125     return (val << ((8 * sizeof(int)) - bits)) >> ((8 * sizeof(int)) - bits);
126 }
127 #endif
128
129 #ifndef COPY3_IF_LT
130 #define COPY3_IF_LT(x, y, a, b, c, d)\
131 if ((y) < (x)) {\
132     (x) = (y);\
133     (a) = (b);\
134     (c) = (d);\
135 }
136 #endif
137
138 #ifndef NEG_SSR32
139 #   define NEG_SSR32(a,s) ((( int32_t)(a))>>(32-(s)))
140 #endif
141
142 #ifndef NEG_USR32
143 #   define NEG_USR32(a,s) (((uint32_t)(a))>>(32-(s)))
144 #endif
145
146 #if HAVE_BIGENDIAN
147 # ifndef PACK_2U8
148 #   define PACK_2U8(a,b)     (((a) <<  8) | (b))
149 # endif
150 # ifndef PACK_4U8
151 #   define PACK_4U8(a,b,c,d) (((a) << 24) | ((b) << 16) | ((c) << 8) | (d))
152 # endif
153 # ifndef PACK_2U16
154 #   define PACK_2U16(a,b)    (((a) << 16) | (b))
155 # endif
156 #else
157 # ifndef PACK_2U8
158 #   define PACK_2U8(a,b)     (((b) <<  8) | (a))
159 # endif
160 # ifndef PACK_4U2
161 #   define PACK_4U8(a,b,c,d) (((d) << 24) | ((c) << 16) | ((b) << 8) | (a))
162 # endif
163 # ifndef PACK_2U16
164 #   define PACK_2U16(a,b)    (((b) << 16) | (a))
165 # endif
166 #endif
167
168 #ifndef PACK_2S8
169 #   define PACK_2S8(a,b)     PACK_2U8((a)&255, (b)&255)
170 #endif
171 #ifndef PACK_4S8
172 #   define PACK_4S8(a,b,c,d) PACK_4U8((a)&255, (b)&255, (c)&255, (d)&255)
173 #endif
174 #ifndef PACK_2S16
175 #   define PACK_2S16(a,b)    PACK_2U16((a)&0xffff, (b)&0xffff)
176 #endif
177
178 #endif /* AVCODEC_MATHOPS_H */
179