2002-05-26 00:45:33 +02:00
|
|
|
/*
|
|
|
|
* DSP utils
|
2009-01-19 16:46:40 +01:00
|
|
|
* Copyright (c) 2000, 2001, 2002 Fabrice Bellard
|
2004-01-10 17:04:55 +01:00
|
|
|
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
|
2002-05-26 00:45:33 +02:00
|
|
|
*
|
2011-03-18 18:35:10 +01:00
|
|
|
* This file is part of Libav.
|
2006-10-07 17:30:46 +02:00
|
|
|
*
|
2011-03-18 18:35:10 +01:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2002-05-26 00:45:33 +02:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 17:30:46 +02:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2002-05-26 00:45:33 +02:00
|
|
|
*
|
2011-03-18 18:35:10 +01:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2002-05-26 00:45:33 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-03-18 18:35:10 +01:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2006-01-12 23:43:26 +01:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-05-26 00:45:33 +02:00
|
|
|
*/
|
2003-03-06 11:08:15 +01:00
|
|
|
|
|
|
|
/**
|
2010-04-20 16:45:34 +02:00
|
|
|
* @file
|
2003-03-06 12:32:04 +01:00
|
|
|
* DSP utils.
|
2013-12-22 17:49:52 +01:00
|
|
|
* Note, many functions in here may use MMX which trashes the FPU state, it is
|
|
|
|
* absolutely necessary to call emms_c() between DSP & float/double code.
|
2003-03-06 11:08:15 +01:00
|
|
|
*/
|
|
|
|
|
2008-08-31 09:39:47 +02:00
|
|
|
#ifndef AVCODEC_DSPUTIL_H
|
|
|
|
#define AVCODEC_DSPUTIL_H
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2002-02-26 23:14:27 +01:00
|
|
|
#include "avcodec.h"
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2013-12-22 14:32:11 +01:00
|
|
|
extern uint32_t ff_square_tab[512];
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2013-12-20 15:44:16 +01:00
|
|
|
struct MpegEncContext;
|
2013-12-22 17:49:52 +01:00
|
|
|
/* Motion estimation:
|
|
|
|
* h is limited to { width / 2, width, 2 * width },
|
|
|
|
* but never larger than 16 and never smaller than 2.
|
|
|
|
* Although currently h < 4 is not used as functions with
|
|
|
|
* width < 8 are neither used nor implemented. */
|
2013-12-20 15:44:16 +01:00
|
|
|
typedef int (*me_cmp_func)(struct MpegEncContext *c,
|
2013-12-22 17:49:52 +01:00
|
|
|
uint8_t *blk1 /* align width (8 or 16) */,
|
|
|
|
uint8_t *blk2 /* align 1 */, int line_size, int h);
|
2002-12-28 00:51:46 +01:00
|
|
|
|
2003-03-06 11:08:15 +01:00
|
|
|
/**
|
|
|
|
* DSPContext.
|
|
|
|
*/
|
2002-11-11 10:40:17 +01:00
|
|
|
typedef struct DSPContext {
|
2013-12-22 17:50:07 +01:00
|
|
|
int (*sum_abs_dctelem)(int16_t *block /* align 16 */);
|
2014-01-14 10:33:47 +01:00
|
|
|
|
2009-02-19 01:28:08 +01:00
|
|
|
me_cmp_func sad[6]; /* identical to pix_absAxA except additional void * */
|
|
|
|
me_cmp_func sse[6];
|
|
|
|
me_cmp_func hadamard8_diff[6];
|
|
|
|
me_cmp_func dct_sad[6];
|
|
|
|
me_cmp_func quant_psnr[6];
|
|
|
|
me_cmp_func bit[6];
|
|
|
|
me_cmp_func rd[6];
|
|
|
|
me_cmp_func vsad[6];
|
|
|
|
me_cmp_func vsse[6];
|
|
|
|
me_cmp_func nsse[6];
|
|
|
|
me_cmp_func dct_max[6];
|
|
|
|
me_cmp_func dct264_sad[6];
|
|
|
|
|
|
|
|
me_cmp_func me_pre_cmp[6];
|
|
|
|
me_cmp_func me_cmp[6];
|
|
|
|
me_cmp_func me_sub_cmp[6];
|
|
|
|
me_cmp_func mb_cmp[6];
|
2013-12-22 17:50:07 +01:00
|
|
|
me_cmp_func ildct_cmp[6]; // only width 16 used
|
|
|
|
me_cmp_func frame_skip_cmp[6]; // only width 8 used
|
2002-11-11 10:40:17 +01:00
|
|
|
|
2003-12-30 17:07:57 +01:00
|
|
|
me_cmp_func pix_abs[2][4];
|
2002-11-11 10:40:17 +01:00
|
|
|
} DSPContext;
|
|
|
|
|
2012-02-15 11:06:44 +01:00
|
|
|
void ff_dsputil_static_init(void);
|
2013-12-22 17:50:07 +01:00
|
|
|
void ff_dsputil_init(DSPContext *p, AVCodecContext *avctx);
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2013-12-22 17:50:07 +01:00
|
|
|
void ff_set_cmp(DSPContext *c, me_cmp_func *cmp, int type);
|
2004-01-05 23:57:07 +01:00
|
|
|
|
2013-12-30 12:09:03 +01:00
|
|
|
void ff_dsputil_init_arm(DSPContext *c, AVCodecContext *avctx,
|
|
|
|
unsigned high_bit_depth);
|
|
|
|
void ff_dsputil_init_ppc(DSPContext *c, AVCodecContext *avctx,
|
|
|
|
unsigned high_bit_depth);
|
|
|
|
void ff_dsputil_init_x86(DSPContext *c, AVCodecContext *avctx,
|
|
|
|
unsigned high_bit_depth);
|
2007-06-16 12:44:46 +02:00
|
|
|
|
2008-08-31 09:39:47 +02:00
|
|
|
#endif /* AVCODEC_DSPUTIL_H */
|