Mercurial > libavcodec.hg
annotate dsputil.h @ 1567:e08df4d22d27 libavcodec
* introducing dct248 into the DSP context.
* simple/accurate implementation of dct248
* DV encoding now supports 2-4-8 DCT
* DV encoding gets a bit faster (but still miles away
from what I think it could do)
* misc. DV codec cleanups
| author | romansh |
|---|---|
| date | Fri, 24 Oct 2003 18:28:01 +0000 |
| parents | 1a9a63f59849 |
| children | aa4dc16c0f18 |
| rev | line source |
|---|---|
| 429 | 1 /* |
| 2 * DSP utils | |
| 3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard. | |
| 4 * | |
| 5 * This library is free software; you can redistribute it and/or | |
| 6 * modify it under the terms of the GNU Lesser General Public | |
| 7 * License as published by the Free Software Foundation; either | |
| 8 * version 2 of the License, or (at your option) any later version. | |
| 9 * | |
| 10 * This library is distributed in the hope that it will be useful, | |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 13 * Lesser General Public License for more details. | |
| 14 * | |
| 15 * You should have received a copy of the GNU Lesser General Public | |
| 16 * License along with this library; if not, write to the Free Software | |
| 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 18 */ | |
| 1102 | 19 |
| 20 /** | |
| 21 * @file dsputil.h | |
| 1106 | 22 * DSP utils. |
| 1213 | 23 * note, many functions in here may use MMX which trashes the FPU state, it is |
| 24 * absolutely necessary to call emms_c() between dsp & float/double code | |
| 1102 | 25 */ |
| 26 | |
| 0 | 27 #ifndef DSPUTIL_H |
| 28 #define DSPUTIL_H | |
| 29 | |
| 30 #include "common.h" | |
|
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
31 #include "avcodec.h" |
| 0 | 32 |
| 1102 | 33 |
| 255 | 34 //#define DEBUG |
| 0 | 35 /* dct code */ |
| 36 typedef short DCTELEM; | |
| 37 | |
|
474
11dbd00682fc
avoid name clash with libjpeg - added missing externs
bellard
parents:
429
diff
changeset
|
38 void fdct_ifast (DCTELEM *data); |
|
625
bb6a69f9d409
slow but accurate integer dct from IJG (should be ok with the LGPL as the old DCT is the fast integer DCT from IJG)
michaelni
parents:
623
diff
changeset
|
39 void ff_jpeg_fdct_islow (DCTELEM *data); |
| 1567 | 40 void ff_fdct248_islow (DCTELEM *data); |
| 0 | 41 |
| 42 void j_rev_dct (DCTELEM *data); | |
| 43 | |
|
687
9abb13c21fbe
fdct_mmx -> ff_fdct_mmx (renamed to avoid namespace conflict with xvid)
arpi_esp
parents:
675
diff
changeset
|
44 void ff_fdct_mmx(DCTELEM *block); |
| 1565 | 45 void ff_fdct_mmx2(DCTELEM *block); |
| 0 | 46 |
| 34 | 47 /* encoding scans */ |
| 1064 | 48 extern const uint8_t ff_alternate_horizontal_scan[64]; |
| 49 extern const uint8_t ff_alternate_vertical_scan[64]; | |
| 50 extern const uint8_t ff_zigzag_direct[64]; | |
| 1567 | 51 extern const uint8_t ff_zigzag248_direct[64]; |
|
190
9e0e56869d05
fix for non-mmx runtimedetect encoding bugs - patch by Michael Niedermayer <michaelni@gmx.at>
uid46427
parents:
174
diff
changeset
|
52 |
| 0 | 53 /* pixel operations */ |
| 54 #define MAX_NEG_CROP 384 | |
| 55 | |
| 56 /* temporary */ | |
| 1064 | 57 extern uint32_t squareTbl[512]; |
| 58 extern uint8_t cropTbl[256 + 2 * MAX_NEG_CROP]; | |
| 0 | 59 |
| 60 | |
| 675 | 61 /* minimum alignment rules ;) |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
62 if u notice errors in the align stuff, need more alignment for some asm code for some cpu |
| 675 | 63 or need to use a function with less aligned data then send a mail to the ffmpeg-dev list, ... |
| 64 | |
| 65 !warning these alignments might not match reallity, (missing attribute((align)) stuff somewhere possible) | |
| 66 i (michael) didnt check them, these are just the alignents which i think could be reached easily ... | |
| 67 | |
| 68 !future video codecs might need functions with less strict alignment | |
| 69 */ | |
| 0 | 70 |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
71 /* |
| 1064 | 72 void get_pixels_c(DCTELEM *block, const uint8_t *pixels, int line_size); |
| 73 void diff_pixels_c(DCTELEM *block, const uint8_t *s1, const uint8_t *s2, int stride); | |
| 74 void put_pixels_clamped_c(const DCTELEM *block, uint8_t *pixels, int line_size); | |
| 75 void add_pixels_clamped_c(const DCTELEM *block, uint8_t *pixels, int line_size); | |
| 296 | 76 void clear_blocks_c(DCTELEM *blocks); |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
77 */ |
| 0 | 78 |
| 79 /* add and put pixel (decoding) */ | |
| 675 | 80 // blocksizes for op_pixels_func are 8x4,8x8 16x8 16x16 |
| 1064 | 81 typedef void (*op_pixels_func)(uint8_t *block/*align width (8 or 16)*/, const uint8_t *pixels/*align 1*/, int line_size, int h); |
|
1267
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
82 typedef void (*tpel_mc_func)(uint8_t *block/*align width (8 or 16)*/, const uint8_t *pixels/*align 1*/, int line_size, int w, int h); |
| 1064 | 83 typedef void (*qpel_mc_func)(uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride); |
| 1168 | 84 typedef void (*h264_chroma_mc_func)(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int srcStride, int h, int x, int y); |
| 0 | 85 |
| 984 | 86 #define DEF_OLD_QPEL(name)\ |
| 1064 | 87 void ff_put_ ## name (uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);\ |
| 88 void ff_put_no_rnd_ ## name (uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);\ | |
| 89 void ff_avg_ ## name (uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride); | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
90 |
| 984 | 91 DEF_OLD_QPEL(qpel16_mc11_old_c) |
| 92 DEF_OLD_QPEL(qpel16_mc31_old_c) | |
| 93 DEF_OLD_QPEL(qpel16_mc12_old_c) | |
| 94 DEF_OLD_QPEL(qpel16_mc32_old_c) | |
| 95 DEF_OLD_QPEL(qpel16_mc13_old_c) | |
| 96 DEF_OLD_QPEL(qpel16_mc33_old_c) | |
| 97 DEF_OLD_QPEL(qpel8_mc11_old_c) | |
| 98 DEF_OLD_QPEL(qpel8_mc31_old_c) | |
| 99 DEF_OLD_QPEL(qpel8_mc12_old_c) | |
| 100 DEF_OLD_QPEL(qpel8_mc32_old_c) | |
| 101 DEF_OLD_QPEL(qpel8_mc13_old_c) | |
| 102 DEF_OLD_QPEL(qpel8_mc33_old_c) | |
| 651 | 103 |
| 104 #define CALL_2X_PIXELS(a, b, n)\ | |
| 105 static void a(uint8_t *block, const uint8_t *pixels, int line_size, int h){\ | |
| 106 b(block , pixels , line_size, h);\ | |
| 107 b(block+n, pixels+n, line_size, h);\ | |
| 108 } | |
| 255 | 109 |
| 0 | 110 /* motion estimation */ |
| 111 | |
| 1064 | 112 typedef int (*op_pixels_abs_func)(uint8_t *blk1/*align width (8 or 16)*/, uint8_t *blk2/*align 1*/, int line_size)/* __attribute__ ((const))*/; |
| 936 | 113 |
| 1064 | 114 typedef int (*me_cmp_func)(void /*MpegEncContext*/ *s, uint8_t *blk1/*align width (8 or 16)*/, uint8_t *blk2/*align 1*/, int line_size)/* __attribute__ ((const))*/; |
| 936 | 115 |
| 1168 | 116 |
| 1102 | 117 /** |
| 118 * DSPContext. | |
| 119 */ | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
120 typedef struct DSPContext { |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
121 /* pixel ops : interface with DCT */ |
| 1064 | 122 void (*get_pixels)(DCTELEM *block/*align 16*/, const uint8_t *pixels/*align 8*/, int line_size); |
| 123 void (*diff_pixels)(DCTELEM *block/*align 16*/, const uint8_t *s1/*align 8*/, const uint8_t *s2/*align 8*/, int stride); | |
| 124 void (*put_pixels_clamped)(const DCTELEM *block/*align 16*/, uint8_t *pixels/*align 8*/, int line_size); | |
| 125 void (*add_pixels_clamped)(const DCTELEM *block/*align 16*/, uint8_t *pixels/*align 8*/, int line_size); | |
| 1136 | 126 /** |
| 127 * translational global motion compensation. | |
| 128 */ | |
| 1064 | 129 void (*gmc1)(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int srcStride, int h, int x16, int y16, int rounder); |
| 1136 | 130 /** |
| 131 * global motion compensation. | |
| 132 */ | |
| 1064 | 133 void (*gmc )(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int ox, int oy, |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
134 int dxx, int dxy, int dyx, int dyy, int shift, int r, int width, int height); |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
135 void (*clear_blocks)(DCTELEM *blocks/*align 16*/); |
| 1064 | 136 int (*pix_sum)(uint8_t * pix, int line_size); |
| 137 int (*pix_norm1)(uint8_t * pix, int line_size); | |
| 936 | 138 me_cmp_func sad[2]; /* identical to pix_absAxA except additional void * */ |
| 139 me_cmp_func sse[2]; | |
| 140 me_cmp_func hadamard8_diff[2]; | |
| 141 me_cmp_func dct_sad[2]; | |
| 142 me_cmp_func quant_psnr[2]; | |
| 1007 | 143 me_cmp_func bit[2]; |
| 144 me_cmp_func rd[2]; | |
| 936 | 145 int (*hadamard8_abs )(uint8_t *src, int stride, int mean); |
| 146 | |
| 954 | 147 me_cmp_func me_pre_cmp[11]; |
| 936 | 148 me_cmp_func me_cmp[11]; |
| 149 me_cmp_func me_sub_cmp[11]; | |
| 150 me_cmp_func mb_cmp[11]; | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
151 |
|
1267
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
152 /* maybe create an array for 16/8/4/2 functions */ |
| 1136 | 153 /** |
| 154 * Halfpel motion compensation with rounding (a+b+1)>>1. | |
|
1267
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
155 * this is an array[4][4] of motion compensation funcions for 4 |
|
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
156 * horizontal blocksizes (2,4,8,16) and the 4 halfpel positions<br> |
| 1213 | 157 * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ] |
| 1136 | 158 * @param block destination where the result is stored |
| 159 * @param pixels source | |
| 160 * @param line_size number of bytes in a horizontal line of block | |
| 161 * @param h height | |
| 162 */ | |
|
1267
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
163 op_pixels_func put_pixels_tab[4][4]; |
| 1136 | 164 |
| 165 /** | |
| 166 * Halfpel motion compensation with rounding (a+b+1)>>1. | |
| 1320 | 167 * This is an array[4][4] of motion compensation functions for 4 |
| 1319 | 168 * horizontal blocksizes (2,4,8,16) and the 4 halfpel positions<br> |
| 1213 | 169 * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ] |
| 1136 | 170 * @param block destination into which the result is averaged (a+b+1)>>1 |
| 171 * @param pixels source | |
| 172 * @param line_size number of bytes in a horizontal line of block | |
| 173 * @param h height | |
| 174 */ | |
| 1319 | 175 op_pixels_func avg_pixels_tab[4][4]; |
| 1136 | 176 |
| 177 /** | |
| 178 * Halfpel motion compensation with no rounding (a+b)>>1. | |
| 1225 | 179 * this is an array[2][4] of motion compensation funcions for 2 |
| 180 * horizontal blocksizes (8,16) and the 4 halfpel positions<br> | |
| 1213 | 181 * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ] |
| 1136 | 182 * @param block destination where the result is stored |
| 183 * @param pixels source | |
| 184 * @param line_size number of bytes in a horizontal line of block | |
| 185 * @param h height | |
| 186 */ | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
187 op_pixels_func put_no_rnd_pixels_tab[2][4]; |
| 1136 | 188 |
| 189 /** | |
| 190 * Halfpel motion compensation with no rounding (a+b)>>1. | |
| 1225 | 191 * this is an array[2][4] of motion compensation funcions for 2 |
| 192 * horizontal blocksizes (8,16) and the 4 halfpel positions<br> | |
| 1213 | 193 * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ] |
| 1136 | 194 * @param block destination into which the result is averaged (a+b)>>1 |
| 195 * @param pixels source | |
| 196 * @param line_size number of bytes in a horizontal line of block | |
| 197 * @param h height | |
| 198 */ | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
199 op_pixels_func avg_no_rnd_pixels_tab[2][4]; |
|
1267
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
200 |
|
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
201 /** |
|
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
202 * Thirdpel motion compensation with rounding (a+b+1)>>1. |
|
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
203 * this is an array[12] of motion compensation funcions for the 9 thirdpel positions<br> |
|
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
204 * *pixels_tab[ xthirdpel + 4*ythirdpel ] |
|
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
205 * @param block destination where the result is stored |
|
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
206 * @param pixels source |
|
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
207 * @param line_size number of bytes in a horizontal line of block |
|
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
208 * @param h height |
|
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
209 */ |
|
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
210 tpel_mc_func put_tpel_pixels_tab[11]; //FIXME individual func ptr per width? |
| 1319 | 211 tpel_mc_func avg_tpel_pixels_tab[11]; //FIXME individual func ptr per width? |
| 212 | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
213 qpel_mc_func put_qpel_pixels_tab[2][16]; |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
214 qpel_mc_func avg_qpel_pixels_tab[2][16]; |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
215 qpel_mc_func put_no_rnd_qpel_pixels_tab[2][16]; |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
216 qpel_mc_func avg_no_rnd_qpel_pixels_tab[2][16]; |
| 936 | 217 qpel_mc_func put_mspel_pixels_tab[8]; |
| 1168 | 218 |
| 219 /** | |
| 220 * h264 Chram MC | |
| 221 */ | |
| 222 h264_chroma_mc_func put_h264_chroma_pixels_tab[3]; | |
| 223 h264_chroma_mc_func avg_h264_chroma_pixels_tab[3]; | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
224 |
| 1168 | 225 qpel_mc_func put_h264_qpel_pixels_tab[3][16]; |
| 226 qpel_mc_func avg_h264_qpel_pixels_tab[3][16]; | |
| 227 | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
228 op_pixels_abs_func pix_abs16x16; |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
229 op_pixels_abs_func pix_abs16x16_x2; |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
230 op_pixels_abs_func pix_abs16x16_y2; |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
231 op_pixels_abs_func pix_abs16x16_xy2; |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
232 op_pixels_abs_func pix_abs8x8; |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
233 op_pixels_abs_func pix_abs8x8_x2; |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
234 op_pixels_abs_func pix_abs8x8_y2; |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
235 op_pixels_abs_func pix_abs8x8_xy2; |
| 866 | 236 |
| 237 /* huffyuv specific */ | |
| 238 void (*add_bytes)(uint8_t *dst/*align 16*/, uint8_t *src/*align 16*/, int w); | |
| 936 | 239 void (*diff_bytes)(uint8_t *dst/*align 16*/, uint8_t *src1/*align 16*/, uint8_t *src2/*align 1*/,int w); |
| 1527 | 240 /** |
| 241 * subtract huffyuv's variant of median prediction | |
| 242 * note, this might read from src1[-1], src2[-1] | |
| 243 */ | |
| 244 void (*sub_hfyu_median_prediction)(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w, int *left, int *left_top); | |
| 1273 | 245 void (*bswap_buf)(uint32_t *dst, uint32_t *src, int w); |
| 1092 | 246 |
| 247 /* (I)DCT */ | |
| 248 void (*fdct)(DCTELEM *block/* align 16*/); | |
| 1567 | 249 void (*fdct248)(DCTELEM *block/* align 16*/); |
| 1102 | 250 |
|
1324
7d328fd9d8a5
the return of the idct with 16bit output by ("Ivan Kalvachev" <ivan at cacad dot com>)
michaelni
parents:
1320
diff
changeset
|
251 /* IDCT really*/ |
|
7d328fd9d8a5
the return of the idct with 16bit output by ("Ivan Kalvachev" <ivan at cacad dot com>)
michaelni
parents:
1320
diff
changeset
|
252 void (*idct)(DCTELEM *block/* align 16*/); |
|
7d328fd9d8a5
the return of the idct with 16bit output by ("Ivan Kalvachev" <ivan at cacad dot com>)
michaelni
parents:
1320
diff
changeset
|
253 |
| 1102 | 254 /** |
| 1104 | 255 * block -> idct -> clip to unsigned 8 bit -> dest. |
| 1102 | 256 * (-1392, 0, 0, ...) -> idct -> (-174, -174, ...) -> put -> (0, 0, ...) |
| 1111 | 257 * @param line_size size in bytes of a horizotal line of dest |
| 1102 | 258 */ |
| 1092 | 259 void (*idct_put)(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/); |
| 1102 | 260 |
| 261 /** | |
| 262 * block -> idct -> add dest -> clip to unsigned 8 bit -> dest. | |
| 1111 | 263 * @param line_size size in bytes of a horizotal line of dest |
| 1102 | 264 */ |
| 1092 | 265 void (*idct_add)(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/); |
| 1102 | 266 |
| 267 /** | |
| 1104 | 268 * idct input permutation. |
| 1241 | 269 * several optimized IDCTs need a permutated input (relative to the normal order of the reference |
| 270 * IDCT) | |
| 271 * this permutation must be performed before the idct_put/add, note, normally this can be merged | |
| 272 * with the zigzag/alternate scan<br> | |
| 1102 | 273 * an example to avoid confusion: |
| 274 * - (->decode coeffs -> zigzag reorder -> dequant -> reference idct ->...) | |
| 275 * - (x -> referece dct -> reference idct -> x) | |
| 276 * - (x -> referece dct -> simple_mmx_perm = idct_permutation -> simple_idct_mmx -> x) | |
| 277 * - (->decode coeffs -> zigzag reorder -> simple_mmx_perm -> dequant -> simple_idct_mmx ->...) | |
| 278 */ | |
| 1092 | 279 uint8_t idct_permutation[64]; |
| 280 int idct_permutation_type; | |
| 281 #define FF_NO_IDCT_PERM 1 | |
| 282 #define FF_LIBMPEG2_IDCT_PERM 2 | |
| 283 #define FF_SIMPLE_IDCT_PERM 3 | |
| 284 #define FF_TRANSPOSE_IDCT_PERM 4 | |
| 285 | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
286 } DSPContext; |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
287 |
| 1201 | 288 void dsputil_static_init(void); |
| 1092 | 289 void dsputil_init(DSPContext* p, AVCodecContext *avctx); |
| 0 | 290 |
| 764 | 291 /** |
| 292 * permute block according to permuatation. | |
| 293 * @param last last non zero element in scantable order | |
| 294 */ | |
| 1064 | 295 void ff_block_permute(DCTELEM *block, uint8_t *permutation, const uint8_t *scantable, int last); |
| 34 | 296 |
| 1264 | 297 #define BYTE_VEC32(c) ((c)*0x01010101UL) |
| 298 | |
| 299 static inline uint32_t rnd_avg32(uint32_t a, uint32_t b) | |
| 300 { | |
| 301 return (a | b) - (((a ^ b) & ~BYTE_VEC32(0x01)) >> 1); | |
| 302 } | |
| 303 | |
| 304 static inline uint32_t no_rnd_avg32(uint32_t a, uint32_t b) | |
| 305 { | |
| 306 return (a & b) + (((a ^ b) & ~BYTE_VEC32(0x01)) >> 1); | |
| 307 } | |
| 308 | |
| 1102 | 309 /** |
| 1104 | 310 * Empty mmx state. |
| 1102 | 311 * this must be called between any dsp function and float/double code. |
| 312 * for example sin(); dsp->idct_put(); emms_c(); cos() | |
| 313 */ | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
314 #define emms_c() |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
315 |
|
995
edc10966b081
altivec jumbo patch by (Romain Dolbeau <dolbeaur at club-internet dot fr>)
michaelni
parents:
984
diff
changeset
|
316 /* should be defined by architectures supporting |
|
edc10966b081
altivec jumbo patch by (Romain Dolbeau <dolbeaur at club-internet dot fr>)
michaelni
parents:
984
diff
changeset
|
317 one or more MultiMedia extension */ |
|
edc10966b081
altivec jumbo patch by (Romain Dolbeau <dolbeaur at club-internet dot fr>)
michaelni
parents:
984
diff
changeset
|
318 int mm_support(void); |
|
edc10966b081
altivec jumbo patch by (Romain Dolbeau <dolbeaur at club-internet dot fr>)
michaelni
parents:
984
diff
changeset
|
319 |
| 62 | 320 #if defined(HAVE_MMX) |
| 0 | 321 |
| 862 | 322 #undef emms_c |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
323 |
| 0 | 324 #define MM_MMX 0x0001 /* standard MMX */ |
| 325 #define MM_3DNOW 0x0004 /* AMD 3DNOW */ | |
| 326 #define MM_MMXEXT 0x0002 /* SSE integer functions or AMD MMX ext */ | |
| 327 #define MM_SSE 0x0008 /* SSE functions */ | |
| 328 #define MM_SSE2 0x0010 /* PIV SSE2 functions */ | |
| 329 | |
| 330 extern int mm_flags; | |
| 331 | |
| 1064 | 332 void add_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_size); |
| 333 void put_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_size); | |
| 0 | 334 |
| 335 static inline void emms(void) | |
| 336 { | |
|
6
ec4642daa6fe
added emms_c() macro which should can used in c code in both mmx/non mmx cases
glantau
parents:
2
diff
changeset
|
337 __asm __volatile ("emms;":::"memory"); |
|
ec4642daa6fe
added emms_c() macro which should can used in c code in both mmx/non mmx cases
glantau
parents:
2
diff
changeset
|
338 } |
|
ec4642daa6fe
added emms_c() macro which should can used in c code in both mmx/non mmx cases
glantau
parents:
2
diff
changeset
|
339 |
| 936 | 340 |
|
6
ec4642daa6fe
added emms_c() macro which should can used in c code in both mmx/non mmx cases
glantau
parents:
2
diff
changeset
|
341 #define emms_c() \ |
|
ec4642daa6fe
added emms_c() macro which should can used in c code in both mmx/non mmx cases
glantau
parents:
2
diff
changeset
|
342 {\ |
|
ec4642daa6fe
added emms_c() macro which should can used in c code in both mmx/non mmx cases
glantau
parents:
2
diff
changeset
|
343 if (mm_flags & MM_MMX)\ |
|
ec4642daa6fe
added emms_c() macro which should can used in c code in both mmx/non mmx cases
glantau
parents:
2
diff
changeset
|
344 emms();\ |
| 0 | 345 } |
| 346 | |
| 347 #define __align8 __attribute__ ((aligned (8))) | |
| 348 | |
| 1092 | 349 void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx); |
| 350 void dsputil_init_pix_mmx(DSPContext* c, AVCodecContext *avctx); | |
| 1065 | 351 |
| 62 | 352 #elif defined(ARCH_ARMV4L) |
| 353 | |
| 354 /* This is to use 4 bytes read to the IDCT pointers for some 'zero' | |
| 355 line ptimizations */ | |
| 356 #define __align8 __attribute__ ((aligned (4))) | |
| 357 | |
| 1092 | 358 void dsputil_init_armv4l(DSPContext* c, AVCodecContext *avctx); |
| 62 | 359 |
| 88 | 360 #elif defined(HAVE_MLIB) |
| 361 | |
| 362 /* SPARC/VIS IDCT needs 8-byte aligned DCT blocks */ | |
| 363 #define __align8 __attribute__ ((aligned (8))) | |
| 364 | |
| 1092 | 365 void dsputil_init_mlib(DSPContext* c, AVCodecContext *avctx); |
| 88 | 366 |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
190
diff
changeset
|
367 #elif defined(ARCH_ALPHA) |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
190
diff
changeset
|
368 |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
190
diff
changeset
|
369 #define __align8 __attribute__ ((aligned (8))) |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
190
diff
changeset
|
370 |
| 1092 | 371 void dsputil_init_alpha(DSPContext* c, AVCodecContext *avctx); |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
190
diff
changeset
|
372 |
|
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
373 #elif defined(ARCH_POWERPC) |
|
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
374 |
|
894
a408778eff87
altivec accelerated v-resample patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
884
diff
changeset
|
375 #define MM_ALTIVEC 0x0001 /* standard AltiVec */ |
|
a408778eff87
altivec accelerated v-resample patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
884
diff
changeset
|
376 |
|
a408778eff87
altivec accelerated v-resample patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
884
diff
changeset
|
377 extern int mm_flags; |
|
a408778eff87
altivec accelerated v-resample patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
884
diff
changeset
|
378 |
|
1033
b4172ff70d27
Altivec on non darwin systems patch by Romain Dolbeau
bellard
parents:
1008
diff
changeset
|
379 #if defined(HAVE_ALTIVEC) && !defined(CONFIG_DARWIN) |
|
b4172ff70d27
Altivec on non darwin systems patch by Romain Dolbeau
bellard
parents:
1008
diff
changeset
|
380 #include <altivec.h> |
|
b4172ff70d27
Altivec on non darwin systems patch by Romain Dolbeau
bellard
parents:
1008
diff
changeset
|
381 #endif |
|
b4172ff70d27
Altivec on non darwin systems patch by Romain Dolbeau
bellard
parents:
1008
diff
changeset
|
382 |
|
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
383 #define __align8 __attribute__ ((aligned (16))) |
|
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
384 |
| 1092 | 385 void dsputil_init_ppc(DSPContext* c, AVCodecContext *avctx); |
|
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
386 |
|
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
687
diff
changeset
|
387 #elif defined(HAVE_MMI) |
|
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
687
diff
changeset
|
388 |
|
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
687
diff
changeset
|
389 #define __align8 __attribute__ ((aligned (16))) |
|
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
687
diff
changeset
|
390 |
| 1092 | 391 void dsputil_init_mmi(DSPContext* c, AVCodecContext *avctx); |
|
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
687
diff
changeset
|
392 |
|
1259
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1241
diff
changeset
|
393 #elif defined(ARCH_SH4) |
|
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1241
diff
changeset
|
394 |
|
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1241
diff
changeset
|
395 #define __align8 __attribute__ ((aligned (8))) |
|
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1241
diff
changeset
|
396 |
|
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1241
diff
changeset
|
397 void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx); |
|
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1241
diff
changeset
|
398 |
| 0 | 399 #else |
| 400 | |
| 401 #define __align8 | |
| 402 | |
| 403 #endif | |
| 404 | |
|
493
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
405 #ifdef __GNUC__ |
|
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
406 |
|
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
407 struct unaligned_64 { uint64_t l; } __attribute__((packed)); |
|
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
408 struct unaligned_32 { uint32_t l; } __attribute__((packed)); |
|
1267
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
409 struct unaligned_16 { uint16_t l; } __attribute__((packed)); |
|
493
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
410 |
|
1267
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
411 #define LD16(a) (((const struct unaligned_16 *) (a))->l) |
|
493
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
412 #define LD32(a) (((const struct unaligned_32 *) (a))->l) |
|
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
413 #define LD64(a) (((const struct unaligned_64 *) (a))->l) |
|
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
414 |
|
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
415 #define ST32(a, b) (((struct unaligned_32 *) (a))->l) = (b) |
|
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
416 |
|
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
417 #else /* __GNUC__ */ |
|
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
418 |
|
1267
85b71f9f7450
moving the svq3 motion compensation stuff to dsputil (this also means that existing optimized halfpel code is used now ...)
michaelni
parents:
1264
diff
changeset
|
419 #define LD16(a) (*((uint16_t*)(a))) |
|
493
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
420 #define LD32(a) (*((uint32_t*)(a))) |
|
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
421 #define LD64(a) (*((uint64_t*)(a))) |
|
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
422 |
|
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
423 #define ST32(a, b) *((uint32_t*)(a)) = (b) |
|
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
424 |
|
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
425 #endif /* !__GNUC__ */ |
|
873b9075d853
move unaligned access macros to dsputil.h - added unaligned 32 bit store
bellard
parents:
480
diff
changeset
|
426 |
|
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
427 /* PSNR */ |
| 1064 | 428 void get_psnr(uint8_t *orig_image[3], uint8_t *coded_image[3], |
|
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
429 int orig_linesize[3], int coded_linesize, |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
430 AVCodecContext *avctx); |
| 781 | 431 |
| 432 /* FFT computation */ | |
| 433 | |
| 434 /* NOTE: soon integer code will be added, so you must use the | |
| 435 FFTSample type */ | |
| 436 typedef float FFTSample; | |
| 437 | |
| 438 typedef struct FFTComplex { | |
| 439 FFTSample re, im; | |
| 440 } FFTComplex; | |
| 441 | |
| 442 typedef struct FFTContext { | |
| 443 int nbits; | |
| 444 int inverse; | |
| 445 uint16_t *revtab; | |
| 446 FFTComplex *exptab; | |
| 447 FFTComplex *exptab1; /* only used by SSE code */ | |
| 448 void (*fft_calc)(struct FFTContext *s, FFTComplex *z); | |
| 449 } FFTContext; | |
| 450 | |
| 451 int fft_init(FFTContext *s, int nbits, int inverse); | |
| 452 void fft_permute(FFTContext *s, FFTComplex *z); | |
| 453 void fft_calc_c(FFTContext *s, FFTComplex *z); | |
| 454 void fft_calc_sse(FFTContext *s, FFTComplex *z); | |
|
975
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
954
diff
changeset
|
455 void fft_calc_altivec(FFTContext *s, FFTComplex *z); |
|
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
954
diff
changeset
|
456 |
| 781 | 457 static inline void fft_calc(FFTContext *s, FFTComplex *z) |
| 458 { | |
| 459 s->fft_calc(s, z); | |
| 460 } | |
| 461 void fft_end(FFTContext *s); | |
| 462 | |
| 463 /* MDCT computation */ | |
| 464 | |
| 465 typedef struct MDCTContext { | |
| 466 int n; /* size of MDCT (i.e. number of input data * 2) */ | |
| 467 int nbits; /* n = 2^nbits */ | |
| 468 /* pre/post rotation tables */ | |
| 469 FFTSample *tcos; | |
| 470 FFTSample *tsin; | |
| 471 FFTContext fft; | |
| 472 } MDCTContext; | |
| 473 | |
| 794 | 474 int ff_mdct_init(MDCTContext *s, int nbits, int inverse); |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
475 void ff_imdct_calc(MDCTContext *s, FFTSample *output, |
| 781 | 476 const FFTSample *input, FFTSample *tmp); |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
838
diff
changeset
|
477 void ff_mdct_calc(MDCTContext *s, FFTSample *out, |
| 781 | 478 const FFTSample *input, FFTSample *tmp); |
| 794 | 479 void ff_mdct_end(MDCTContext *s); |
| 781 | 480 |
| 936 | 481 #define WARPER88_1616(name8, name16)\ |
| 482 static int name16(void /*MpegEncContext*/ *s, uint8_t *dst, uint8_t *src, int stride){\ | |
| 483 return name8(s, dst , src , stride)\ | |
| 484 +name8(s, dst+8 , src+8 , stride)\ | |
| 485 +name8(s, dst +8*stride, src +8*stride, stride)\ | |
| 486 +name8(s, dst+8+8*stride, src+8+8*stride, stride);\ | |
| 487 } | |
| 488 | |
|
838
b78812db886f
lrintf detection (based upon a patch by Fran?ois Revol <revol at free dot fr>)
michaelni
parents:
802
diff
changeset
|
489 #ifndef HAVE_LRINTF |
|
796
8a5b70c68fbd
added lrintf for non ISOC libcs (fixme: find a better test)
bellard
parents:
794
diff
changeset
|
490 /* XXX: add ISOC specific test to avoid specific BSD testing. */ |
|
8a5b70c68fbd
added lrintf for non ISOC libcs (fixme: find a better test)
bellard
parents:
794
diff
changeset
|
491 /* better than nothing implementation. */ |
| 802 | 492 /* btw, rintf() is existing on fbsd too -- alex */ |
|
796
8a5b70c68fbd
added lrintf for non ISOC libcs (fixme: find a better test)
bellard
parents:
794
diff
changeset
|
493 static inline long int lrintf(float x) |
|
8a5b70c68fbd
added lrintf for non ISOC libcs (fixme: find a better test)
bellard
parents:
794
diff
changeset
|
494 { |
|
1040
998d5035b15b
win32: rint() does not seem to be defined with mingw32-gcc 2.95 - do you have a better solution ?
bellard
parents:
1033
diff
changeset
|
495 #ifdef CONFIG_WIN32 |
|
998d5035b15b
win32: rint() does not seem to be defined with mingw32-gcc 2.95 - do you have a better solution ?
bellard
parents:
1033
diff
changeset
|
496 /* XXX: incorrect, but make it compile */ |
|
998d5035b15b
win32: rint() does not seem to be defined with mingw32-gcc 2.95 - do you have a better solution ?
bellard
parents:
1033
diff
changeset
|
497 return (int)(x); |
|
998d5035b15b
win32: rint() does not seem to be defined with mingw32-gcc 2.95 - do you have a better solution ?
bellard
parents:
1033
diff
changeset
|
498 #else |
|
796
8a5b70c68fbd
added lrintf for non ISOC libcs (fixme: find a better test)
bellard
parents:
794
diff
changeset
|
499 return (int)(rint(x)); |
|
1040
998d5035b15b
win32: rint() does not seem to be defined with mingw32-gcc 2.95 - do you have a better solution ?
bellard
parents:
1033
diff
changeset
|
500 #endif |
|
796
8a5b70c68fbd
added lrintf for non ISOC libcs (fixme: find a better test)
bellard
parents:
794
diff
changeset
|
501 } |
| 0 | 502 #endif |
|
796
8a5b70c68fbd
added lrintf for non ISOC libcs (fixme: find a better test)
bellard
parents:
794
diff
changeset
|
503 |
| 1446 | 504 #if defined(CONFIG_OS2) || defined(CONFIG_SUNOS) |
| 505 static inline float floorf(float f) { | |
| 506 return floor(f); | |
| 507 } | |
|
796
8a5b70c68fbd
added lrintf for non ISOC libcs (fixme: find a better test)
bellard
parents:
794
diff
changeset
|
508 #endif |
| 1446 | 509 |
| 510 #endif |
