3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard.
4 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * note, many functions in here may use MMX which trashes the FPU state, it is
25 * absolutely necessary to call emms_c() between dsp & float/double code
37 typedef short DCTELEM
;
39 void fdct_ifast (DCTELEM
*data
);
40 void fdct_ifast248 (DCTELEM
*data
);
41 void ff_jpeg_fdct_islow (DCTELEM
*data
);
42 void ff_fdct248_islow (DCTELEM
*data
);
44 void j_rev_dct (DCTELEM
*data
);
45 void j_rev_dct4 (DCTELEM
*data
);
46 void j_rev_dct2 (DCTELEM
*data
);
47 void j_rev_dct1 (DCTELEM
*data
);
49 void ff_fdct_mmx(DCTELEM
*block
);
50 void ff_fdct_mmx2(DCTELEM
*block
);
51 void ff_fdct_sse2(DCTELEM
*block
);
53 void ff_h264_idct8_add_c(uint8_t *dst
, DCTELEM
*block
, int stride
);
54 void ff_h264_idct_add_c(uint8_t *dst
, DCTELEM
*block
, int stride
);
55 void ff_h264_lowres_idct_add_c(uint8_t *dst
, int stride
, DCTELEM
*block
);
56 void ff_h264_lowres_idct_put_c(uint8_t *dst
, int stride
, DCTELEM
*block
);
59 extern const uint8_t ff_alternate_horizontal_scan
[64];
60 extern const uint8_t ff_alternate_vertical_scan
[64];
61 extern const uint8_t ff_zigzag_direct
[64];
62 extern const uint8_t ff_zigzag248_direct
[64];
64 /* pixel operations */
65 #define MAX_NEG_CROP 1024
68 extern uint32_t squareTbl
[512];
69 extern uint8_t cropTbl
[256 + 2 * MAX_NEG_CROP
];
71 /* VP3 DSP functions */
72 void ff_vp3_idct_c(DCTELEM
*block
/* align 16*/);
73 void ff_vp3_idct_put_c(uint8_t *dest
/*align 8*/, int line_size
, DCTELEM
*block
/*align 16*/);
74 void ff_vp3_idct_add_c(uint8_t *dest
/*align 8*/, int line_size
, DCTELEM
*block
/*align 16*/);
76 /* minimum alignment rules ;)
77 if u notice errors in the align stuff, need more alignment for some asm code for some cpu
78 or need to use a function with less aligned data then send a mail to the ffmpeg-dev list, ...
80 !warning these alignments might not match reallity, (missing attribute((align)) stuff somewhere possible)
81 i (michael) didnt check them, these are just the alignents which i think could be reached easily ...
83 !future video codecs might need functions with less strict alignment
87 void get_pixels_c(DCTELEM *block, const uint8_t *pixels, int line_size);
88 void diff_pixels_c(DCTELEM *block, const uint8_t *s1, const uint8_t *s2, int stride);
89 void put_pixels_clamped_c(const DCTELEM *block, uint8_t *pixels, int line_size);
90 void add_pixels_clamped_c(const DCTELEM *block, uint8_t *pixels, int line_size);
91 void clear_blocks_c(DCTELEM *blocks);
94 /* add and put pixel (decoding) */
95 // blocksizes for op_pixels_func are 8x4,8x8 16x8 16x16
96 //h for op_pixels_func is limited to {width/2, width} but never larger than 16 and never smaller then 4
97 typedef void (*op_pixels_func
)(uint8_t *block
/*align width (8 or 16)*/, const uint8_t *pixels
/*align 1*/, int line_size
, int h
);
98 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
);
99 typedef void (*qpel_mc_func
)(uint8_t *dst
/*align width (8 or 16)*/, uint8_t *src
/*align 1*/, int stride
);
100 typedef void (*h264_chroma_mc_func
)(uint8_t *dst
/*align 8*/, uint8_t *src
/*align 1*/, int srcStride
, int h
, int x
, int y
);
101 typedef void (*h264_weight_func
)(uint8_t *block
, int stride
, int log2_denom
, int weight
, int offset
);
102 typedef void (*h264_biweight_func
)(uint8_t *dst
, uint8_t *src
, int stride
, int log2_denom
, int weightd
, int weights
, int offsetd
, int offsets
);
104 #define DEF_OLD_QPEL(name)\
105 void ff_put_ ## name (uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);\
106 void ff_put_no_rnd_ ## name (uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);\
107 void ff_avg_ ## name (uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);
109 DEF_OLD_QPEL(qpel16_mc11_old_c
)
110 DEF_OLD_QPEL(qpel16_mc31_old_c
)
111 DEF_OLD_QPEL(qpel16_mc12_old_c
)
112 DEF_OLD_QPEL(qpel16_mc32_old_c
)
113 DEF_OLD_QPEL(qpel16_mc13_old_c
)
114 DEF_OLD_QPEL(qpel16_mc33_old_c
)
115 DEF_OLD_QPEL(qpel8_mc11_old_c
)
116 DEF_OLD_QPEL(qpel8_mc31_old_c
)
117 DEF_OLD_QPEL(qpel8_mc12_old_c
)
118 DEF_OLD_QPEL(qpel8_mc32_old_c
)
119 DEF_OLD_QPEL(qpel8_mc13_old_c
)
120 DEF_OLD_QPEL(qpel8_mc33_old_c
)
122 #define CALL_2X_PIXELS(a, b, n)\
123 static void a(uint8_t *block, const uint8_t *pixels, int line_size, int h){\
124 b(block , pixels , line_size, h);\
125 b(block+n, pixels+n, line_size, h);\
128 /* motion estimation */
129 // h is limited to {width/2, width, 2*width} but never larger than 16 and never smaller then 2
130 // allthough currently h<4 is not used as functions with width <8 are not used and neither implemented
131 typedef int (*me_cmp_func
)(void /*MpegEncContext*/ *s
, uint8_t *blk1
/*align width (8 or 16)*/, uint8_t *blk2
/*align 1*/, int line_size
, int h
)/* __attribute__ ((const))*/;
137 typedef struct DSPContext
{
138 /* pixel ops : interface with DCT */
139 void (*get_pixels
)(DCTELEM
*block
/*align 16*/, const uint8_t *pixels
/*align 8*/, int line_size
);
140 void (*diff_pixels
)(DCTELEM
*block
/*align 16*/, const uint8_t *s1
/*align 8*/, const uint8_t *s2
/*align 8*/, int stride
);
141 void (*put_pixels_clamped
)(const DCTELEM
*block
/*align 16*/, uint8_t *pixels
/*align 8*/, int line_size
);
142 void (*put_signed_pixels_clamped
)(const DCTELEM
*block
/*align 16*/, uint8_t *pixels
/*align 8*/, int line_size
);
143 void (*add_pixels_clamped
)(const DCTELEM
*block
/*align 16*/, uint8_t *pixels
/*align 8*/, int line_size
);
145 * translational global motion compensation.
147 void (*gmc1
)(uint8_t *dst
/*align 8*/, uint8_t *src
/*align 1*/, int srcStride
, int h
, int x16
, int y16
, int rounder
);
149 * global motion compensation.
151 void (*gmc
)(uint8_t *dst
/*align 8*/, uint8_t *src
/*align 1*/, int stride
, int h
, int ox
, int oy
,
152 int dxx
, int dxy
, int dyx
, int dyy
, int shift
, int r
, int width
, int height
);
153 void (*clear_blocks
)(DCTELEM
*blocks
/*align 16*/);
154 int (*pix_sum
)(uint8_t * pix
, int line_size
);
155 int (*pix_norm1
)(uint8_t * pix
, int line_size
);
156 // 16x16 8x8 4x4 2x2 16x8 8x4 4x2 8x16 4x8 2x4
158 me_cmp_func sad
[5]; /* identical to pix_absAxA except additional void * */
160 me_cmp_func hadamard8_diff
[5];
161 me_cmp_func dct_sad
[5];
162 me_cmp_func quant_psnr
[5];
170 me_cmp_func dct_max
[5];
172 me_cmp_func me_pre_cmp
[5];
173 me_cmp_func me_cmp
[5];
174 me_cmp_func me_sub_cmp
[5];
175 me_cmp_func mb_cmp
[5];
176 me_cmp_func ildct_cmp
[5]; //only width 16 used
177 me_cmp_func frame_skip_cmp
[5]; //only width 8 used
180 * Halfpel motion compensation with rounding (a+b+1)>>1.
181 * this is an array[4][4] of motion compensation funcions for 4
182 * horizontal blocksizes (8,16) and the 4 halfpel positions<br>
183 * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ]
184 * @param block destination where the result is stored
185 * @param pixels source
186 * @param line_size number of bytes in a horizontal line of block
189 op_pixels_func put_pixels_tab
[4][4];
192 * Halfpel motion compensation with rounding (a+b+1)>>1.
193 * This is an array[4][4] of motion compensation functions for 4
194 * horizontal blocksizes (8,16) and the 4 halfpel positions<br>
195 * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ]
196 * @param block destination into which the result is averaged (a+b+1)>>1
197 * @param pixels source
198 * @param line_size number of bytes in a horizontal line of block
201 op_pixels_func avg_pixels_tab
[4][4];
204 * Halfpel motion compensation with no rounding (a+b)>>1.
205 * this is an array[2][4] of motion compensation funcions for 2
206 * horizontal blocksizes (8,16) and the 4 halfpel positions<br>
207 * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ]
208 * @param block destination where the result is stored
209 * @param pixels source
210 * @param line_size number of bytes in a horizontal line of block
213 op_pixels_func put_no_rnd_pixels_tab
[4][4];
216 * Halfpel motion compensation with no rounding (a+b)>>1.
217 * this is an array[2][4] of motion compensation funcions for 2
218 * horizontal blocksizes (8,16) and the 4 halfpel positions<br>
219 * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ]
220 * @param block destination into which the result is averaged (a+b)>>1
221 * @param pixels source
222 * @param line_size number of bytes in a horizontal line of block
225 op_pixels_func avg_no_rnd_pixels_tab
[4][4];
227 void (*put_no_rnd_pixels_l2
[2])(uint8_t *block
/*align width (8 or 16)*/, const uint8_t *a
/*align 1*/, const uint8_t *b
/*align 1*/, int line_size
, int h
);
230 * Thirdpel motion compensation with rounding (a+b+1)>>1.
231 * this is an array[12] of motion compensation funcions for the 9 thirdpel positions<br>
232 * *pixels_tab[ xthirdpel + 4*ythirdpel ]
233 * @param block destination where the result is stored
234 * @param pixels source
235 * @param line_size number of bytes in a horizontal line of block
238 tpel_mc_func put_tpel_pixels_tab
[11]; //FIXME individual func ptr per width?
239 tpel_mc_func avg_tpel_pixels_tab
[11]; //FIXME individual func ptr per width?
241 qpel_mc_func put_qpel_pixels_tab
[2][16];
242 qpel_mc_func avg_qpel_pixels_tab
[2][16];
243 qpel_mc_func put_no_rnd_qpel_pixels_tab
[2][16];
244 qpel_mc_func avg_no_rnd_qpel_pixels_tab
[2][16];
245 qpel_mc_func put_mspel_pixels_tab
[8];
250 h264_chroma_mc_func put_h264_chroma_pixels_tab
[3];
251 h264_chroma_mc_func avg_h264_chroma_pixels_tab
[3];
253 qpel_mc_func put_h264_qpel_pixels_tab
[3][16];
254 qpel_mc_func avg_h264_qpel_pixels_tab
[3][16];
256 h264_weight_func weight_h264_pixels_tab
[10];
257 h264_biweight_func biweight_h264_pixels_tab
[10];
259 me_cmp_func pix_abs
[2][4];
261 /* huffyuv specific */
262 void (*add_bytes
)(uint8_t *dst
/*align 16*/, uint8_t *src
/*align 16*/, int w
);
263 void (*diff_bytes
)(uint8_t *dst
/*align 16*/, uint8_t *src1
/*align 16*/, uint8_t *src2
/*align 1*/,int w
);
265 * subtract huffyuv's variant of median prediction
266 * note, this might read from src1[-1], src2[-1]
268 void (*sub_hfyu_median_prediction
)(uint8_t *dst
, uint8_t *src1
, uint8_t *src2
, int w
, int *left
, int *left_top
);
269 void (*bswap_buf
)(uint32_t *dst
, uint32_t *src
, int w
);
271 void (*h264_v_loop_filter_luma
)(uint8_t *pix
, int stride
, int alpha
, int beta
, int8_t *tc0
);
272 void (*h264_h_loop_filter_luma
)(uint8_t *pix
, int stride
, int alpha
, int beta
, int8_t *tc0
);
273 void (*h264_v_loop_filter_chroma
)(uint8_t *pix
, int stride
, int alpha
, int beta
, int8_t *tc0
);
274 void (*h264_h_loop_filter_chroma
)(uint8_t *pix
, int stride
, int alpha
, int beta
, int8_t *tc0
);
275 void (*h264_v_loop_filter_chroma_intra
)(uint8_t *pix
, int stride
, int alpha
, int beta
);
276 void (*h264_h_loop_filter_chroma_intra
)(uint8_t *pix
, int stride
, int alpha
, int beta
);
278 void (*h263_v_loop_filter
)(uint8_t *src
, int stride
, int qscale
);
279 void (*h263_h_loop_filter
)(uint8_t *src
, int stride
, int qscale
);
281 void (*h261_loop_filter
)(uint8_t *src
, int stride
);
284 void (*fdct
)(DCTELEM
*block
/* align 16*/);
285 void (*fdct248
)(DCTELEM
*block
/* align 16*/);
288 void (*idct
)(DCTELEM
*block
/* align 16*/);
291 * block -> idct -> clip to unsigned 8 bit -> dest.
292 * (-1392, 0, 0, ...) -> idct -> (-174, -174, ...) -> put -> (0, 0, ...)
293 * @param line_size size in bytes of a horizotal line of dest
295 void (*idct_put
)(uint8_t *dest
/*align 8*/, int line_size
, DCTELEM
*block
/*align 16*/);
298 * block -> idct -> add dest -> clip to unsigned 8 bit -> dest.
299 * @param line_size size in bytes of a horizotal line of dest
301 void (*idct_add
)(uint8_t *dest
/*align 8*/, int line_size
, DCTELEM
*block
/*align 16*/);
304 * idct input permutation.
305 * several optimized IDCTs need a permutated input (relative to the normal order of the reference
307 * this permutation must be performed before the idct_put/add, note, normally this can be merged
308 * with the zigzag/alternate scan<br>
309 * an example to avoid confusion:
310 * - (->decode coeffs -> zigzag reorder -> dequant -> reference idct ->...)
311 * - (x -> referece dct -> reference idct -> x)
312 * - (x -> referece dct -> simple_mmx_perm = idct_permutation -> simple_idct_mmx -> x)
313 * - (->decode coeffs -> zigzag reorder -> simple_mmx_perm -> dequant -> simple_idct_mmx ->...)
315 uint8_t idct_permutation
[64];
316 int idct_permutation_type
;
317 #define FF_NO_IDCT_PERM 1
318 #define FF_LIBMPEG2_IDCT_PERM 2
319 #define FF_SIMPLE_IDCT_PERM 3
320 #define FF_TRANSPOSE_IDCT_PERM 4
321 #define FF_PARTTRANS_IDCT_PERM 5
323 int (*try_8x8basis
)(int16_t rem
[64], int16_t weight
[64], int16_t basis
[64], int scale
);
324 void (*add_8x8basis
)(int16_t rem
[64], int16_t basis
[64], int scale
);
325 #define BASIS_SHIFT 16
326 #define RECON_SHIFT 6
328 void (*h264_idct_add
)(uint8_t *dst
, DCTELEM
*block
, int stride
);
329 void (*h264_idct8_add
)(uint8_t *dst
, DCTELEM
*block
, int stride
);
332 void dsputil_static_init(void);
333 void dsputil_init(DSPContext
* p
, AVCodecContext
*avctx
);
336 * permute block according to permuatation.
337 * @param last last non zero element in scantable order
339 void ff_block_permute(DCTELEM
*block
, uint8_t *permutation
, const uint8_t *scantable
, int last
);
341 void ff_set_cmp(DSPContext
* c
, me_cmp_func
*cmp
, int type
);
343 #define BYTE_VEC32(c) ((c)*0x01010101UL)
345 static inline uint32_t rnd_avg32(uint32_t a
, uint32_t b
)
347 return (a
| b
) - (((a
^ b
) & ~BYTE_VEC32(0x01)) >> 1);
350 static inline uint32_t no_rnd_avg32(uint32_t a
, uint32_t b
)
352 return (a
& b
) + (((a
^ b
) & ~BYTE_VEC32(0x01)) >> 1);
355 static inline int get_penalty_factor(int lambda
, int lambda2
, int type
){
359 return lambda
>>FF_LAMBDA_SHIFT
;
361 return (3*lambda
)>>(FF_LAMBDA_SHIFT
+1);
363 return (4*lambda
)>>(FF_LAMBDA_SHIFT
);
365 return (2*lambda
)>>(FF_LAMBDA_SHIFT
);
367 return (2*lambda
)>>FF_LAMBDA_SHIFT
;
372 return lambda2
>>FF_LAMBDA_SHIFT
;
380 * this must be called between any dsp function and float/double code.
381 * for example sin(); dsp->idct_put(); emms_c(); cos()
385 /* should be defined by architectures supporting
386 one or more MultiMedia extension */
387 int mm_support(void);
389 #define __align16 __attribute__ ((aligned (16)))
391 #if defined(HAVE_MMX)
395 #define MM_MMX 0x0001 /* standard MMX */
396 #define MM_3DNOW 0x0004 /* AMD 3DNOW */
397 #define MM_MMXEXT 0x0002 /* SSE integer functions or AMD MMX ext */
398 #define MM_SSE 0x0008 /* SSE functions */
399 #define MM_SSE2 0x0010 /* PIV SSE2 functions */
400 #define MM_3DNOWEXT 0x0020 /* AMD 3DNowExt */
404 void add_pixels_clamped_mmx(const DCTELEM
*block
, uint8_t *pixels
, int line_size
);
405 void put_pixels_clamped_mmx(const DCTELEM
*block
, uint8_t *pixels
, int line_size
);
406 void put_signed_pixels_clamped_mmx(const DCTELEM
*block
, uint8_t *pixels
, int line_size
);
408 static inline void emms(void)
410 __asm
__volatile ("emms;":::"memory");
416 if (mm_flags & MM_MMX)\
420 #define __align8 __attribute__ ((aligned (8)))
421 #define STRIDE_ALIGN 8
423 void dsputil_init_mmx(DSPContext
* c
, AVCodecContext
*avctx
);
424 void dsputil_init_pix_mmx(DSPContext
* c
, AVCodecContext
*avctx
);
426 #elif defined(ARCH_ARMV4L)
428 /* This is to use 4 bytes read to the IDCT pointers for some 'zero'
429 line optimizations */
430 #define __align8 __attribute__ ((aligned (4)))
431 #define STRIDE_ALIGN 4
433 void dsputil_init_armv4l(DSPContext
* c
, AVCodecContext
*avctx
);
435 #elif defined(HAVE_MLIB)
437 /* SPARC/VIS IDCT needs 8-byte aligned DCT blocks */
438 #define __align8 __attribute__ ((aligned (8)))
439 #define STRIDE_ALIGN 8
441 void dsputil_init_mlib(DSPContext
* c
, AVCodecContext
*avctx
);
443 #elif defined(ARCH_SPARC)
445 /* SPARC/VIS IDCT needs 8-byte aligned DCT blocks */
446 #define __align8 __attribute__ ((aligned (8)))
447 #define STRIDE_ALIGN 8
448 void dsputil_init_vis(DSPContext
* c
, AVCodecContext
*avctx
);
450 #elif defined(ARCH_ALPHA)
452 #define __align8 __attribute__ ((aligned (8)))
453 #define STRIDE_ALIGN 8
455 void dsputil_init_alpha(DSPContext
* c
, AVCodecContext
*avctx
);
457 #elif defined(ARCH_POWERPC)
459 #define MM_ALTIVEC 0x0001 /* standard AltiVec */
463 #if defined(HAVE_ALTIVEC) && !defined(CONFIG_DARWIN)
464 #define pixel altivec_pixel
469 #define __align8 __attribute__ ((aligned (16)))
470 #define STRIDE_ALIGN 16
472 void dsputil_init_ppc(DSPContext
* c
, AVCodecContext
*avctx
);
474 #elif defined(HAVE_MMI)
476 #define __align8 __attribute__ ((aligned (16)))
477 #define STRIDE_ALIGN 16
479 void dsputil_init_mmi(DSPContext
* c
, AVCodecContext
*avctx
);
481 #elif defined(ARCH_SH4)
483 #define __align8 __attribute__ ((aligned (8)))
484 #define STRIDE_ALIGN 8
486 void dsputil_init_sh4(DSPContext
* c
, AVCodecContext
*avctx
);
490 #define __align8 __attribute__ ((aligned (8)))
491 #define STRIDE_ALIGN 8
497 struct unaligned_64
{ uint64_t l
; } __attribute__((packed
));
498 struct unaligned_32
{ uint32_t l
; } __attribute__((packed
));
499 struct unaligned_16
{ uint16_t l
; } __attribute__((packed
));
501 #define LD16(a) (((const struct unaligned_16 *) (a))->l)
502 #define LD32(a) (((const struct unaligned_32 *) (a))->l)
503 #define LD64(a) (((const struct unaligned_64 *) (a))->l)
505 #define ST32(a, b) (((struct unaligned_32 *) (a))->l) = (b)
509 #define LD16(a) (*((uint16_t*)(a)))
510 #define LD32(a) (*((uint32_t*)(a)))
511 #define LD64(a) (*((uint64_t*)(a)))
513 #define ST32(a, b) *((uint32_t*)(a)) = (b)
515 #endif /* !__GNUC__ */
518 void get_psnr(uint8_t *orig_image
[3], uint8_t *coded_image
[3],
519 int orig_linesize
[3], int coded_linesize
,
520 AVCodecContext
*avctx
);
522 /* FFT computation */
524 /* NOTE: soon integer code will be added, so you must use the
526 typedef float FFTSample
;
528 typedef struct FFTComplex
{
532 typedef struct FFTContext
{
537 FFTComplex
*exptab1
; /* only used by SSE code */
538 void (*fft_calc
)(struct FFTContext
*s
, FFTComplex
*z
);
541 int ff_fft_init(FFTContext
*s
, int nbits
, int inverse
);
542 void ff_fft_permute(FFTContext
*s
, FFTComplex
*z
);
543 void ff_fft_calc_c(FFTContext
*s
, FFTComplex
*z
);
544 void ff_fft_calc_sse(FFTContext
*s
, FFTComplex
*z
);
545 void ff_fft_calc_altivec(FFTContext
*s
, FFTComplex
*z
);
547 static inline void ff_fft_calc(FFTContext
*s
, FFTComplex
*z
)
551 void ff_fft_end(FFTContext
*s
);
553 /* MDCT computation */
555 typedef struct MDCTContext
{
556 int n
; /* size of MDCT (i.e. number of input data * 2) */
557 int nbits
; /* n = 2^nbits */
558 /* pre/post rotation tables */
564 int ff_mdct_init(MDCTContext
*s
, int nbits
, int inverse
);
565 void ff_imdct_calc(MDCTContext
*s
, FFTSample
*output
,
566 const FFTSample
*input
, FFTSample
*tmp
);
567 void ff_mdct_calc(MDCTContext
*s
, FFTSample
*out
,
568 const FFTSample
*input
, FFTSample
*tmp
);
569 void ff_mdct_end(MDCTContext
*s
);
571 #define WARPER8_16(name8, name16)\
572 static int name16(void /*MpegEncContext*/ *s, uint8_t *dst, uint8_t *src, int stride, int h){\
573 return name8(s, dst , src , stride, h)\
574 +name8(s, dst+8 , src+8 , stride, h);\
577 #define WARPER8_16_SQ(name8, name16)\
578 static int name16(void /*MpegEncContext*/ *s, uint8_t *dst, uint8_t *src, int stride, int h){\
580 score +=name8(s, dst , src , stride, 8);\
581 score +=name8(s, dst+8 , src+8 , stride, 8);\
585 score +=name8(s, dst , src , stride, 8);\
586 score +=name8(s, dst+8 , src+8 , stride, 8);\
592 /* XXX: add ISOC specific test to avoid specific BSD testing. */
593 /* better than nothing implementation. */
594 /* btw, rintf() is existing on fbsd too -- alex */
595 static always_inline
long int lrintf(float x
)
602 : "=m" (i
) : "t" (x
) : "st"
606 /* XXX: incorrect, but make it compile */
607 return (int)(x
+ (x
< 0 ?
-0.5 : 0.5));
610 return (int)(rint(x
));
614 #ifndef _ISOC9X_SOURCE
615 #define _ISOC9X_SOURCE