2001-08-13 23:38:25 +02:00
|
|
|
/*
|
2008-12-17 01:54:54 +01:00
|
|
|
* ARM optimized DSP utils
|
2009-01-19 16:46:40 +01:00
|
|
|
* Copyright (c) 2001 Lionel Ulmer
|
2001-08-13 23:38:25 +02:00
|
|
|
*
|
2006-10-07 17:30:46 +02:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg 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.
|
2001-08-13 23:38:25 +02:00
|
|
|
*
|
2006-10-07 17:30:46 +02:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2001-08-13 23:38:25 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-26 00:45:33 +02:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-08-13 23:38:25 +02:00
|
|
|
*
|
2002-05-26 00:45:33 +02:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 17:30:46 +02:00
|
|
|
* License along with FFmpeg; 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
|
2001-08-13 23:38:25 +02:00
|
|
|
*/
|
|
|
|
|
2012-04-21 16:31:10 +02:00
|
|
|
#include "libavutil/arm/cpu.h"
|
2008-05-09 13:56:36 +02:00
|
|
|
#include "libavcodec/dsputil.h"
|
2009-10-04 15:12:55 +02:00
|
|
|
#include "dsputil_arm.h"
|
2001-08-13 23:38:25 +02:00
|
|
|
|
2009-10-06 23:55:41 +02:00
|
|
|
void ff_j_rev_dct_arm(DCTELEM *data);
|
|
|
|
void ff_simple_idct_arm(DCTELEM *data);
|
2001-08-13 23:38:25 +02:00
|
|
|
|
2003-03-03 15:54:00 +01:00
|
|
|
/* XXX: local hack */
|
|
|
|
static void (*ff_put_pixels_clamped)(const DCTELEM *block, uint8_t *pixels, int line_size);
|
|
|
|
static void (*ff_add_pixels_clamped)(const DCTELEM *block, uint8_t *pixels, int line_size);
|
|
|
|
|
2009-10-04 15:13:12 +02:00
|
|
|
void ff_put_pixels8_arm(uint8_t *block, const uint8_t *pixels, int line_size, int h);
|
|
|
|
void ff_put_pixels8_x2_arm(uint8_t *block, const uint8_t *pixels, int line_size, int h);
|
|
|
|
void ff_put_pixels8_y2_arm(uint8_t *block, const uint8_t *pixels, int line_size, int h);
|
|
|
|
void ff_put_pixels8_xy2_arm(uint8_t *block, const uint8_t *pixels, int line_size, int h);
|
2005-05-26 16:32:46 +02:00
|
|
|
|
2009-10-04 15:13:12 +02:00
|
|
|
void ff_put_no_rnd_pixels8_x2_arm(uint8_t *block, const uint8_t *pixels, int line_size, int h);
|
|
|
|
void ff_put_no_rnd_pixels8_y2_arm(uint8_t *block, const uint8_t *pixels, int line_size, int h);
|
|
|
|
void ff_put_no_rnd_pixels8_xy2_arm(uint8_t *block, const uint8_t *pixels, int line_size, int h);
|
2005-05-26 16:32:46 +02:00
|
|
|
|
2009-10-04 15:13:12 +02:00
|
|
|
void ff_put_pixels16_arm(uint8_t *block, const uint8_t *pixels, int line_size, int h);
|
2005-05-26 16:32:46 +02:00
|
|
|
|
2009-10-04 15:13:12 +02:00
|
|
|
CALL_2X_PIXELS(ff_put_pixels16_x2_arm, ff_put_pixels8_x2_arm, 8)
|
|
|
|
CALL_2X_PIXELS(ff_put_pixels16_y2_arm, ff_put_pixels8_y2_arm, 8)
|
|
|
|
CALL_2X_PIXELS(ff_put_pixels16_xy2_arm, ff_put_pixels8_xy2_arm, 8)
|
|
|
|
CALL_2X_PIXELS(ff_put_no_rnd_pixels16_x2_arm, ff_put_no_rnd_pixels8_x2_arm, 8)
|
|
|
|
CALL_2X_PIXELS(ff_put_no_rnd_pixels16_y2_arm, ff_put_no_rnd_pixels8_y2_arm, 8)
|
|
|
|
CALL_2X_PIXELS(ff_put_no_rnd_pixels16_xy2_arm, ff_put_no_rnd_pixels8_xy2_arm,8)
|
2005-05-26 16:32:46 +02:00
|
|
|
|
2009-10-06 23:55:41 +02:00
|
|
|
void ff_add_pixels_clamped_arm(const DCTELEM *block, uint8_t *dest,
|
2009-10-06 23:55:37 +02:00
|
|
|
int line_size);
|
2005-05-26 16:32:46 +02:00
|
|
|
|
2003-03-03 15:54:00 +01:00
|
|
|
/* XXX: those functions should be suppressed ASAP when all IDCTs are
|
|
|
|
converted */
|
2009-10-06 23:55:41 +02:00
|
|
|
static void j_rev_dct_arm_put(uint8_t *dest, int line_size, DCTELEM *block)
|
2003-03-03 15:54:00 +01:00
|
|
|
{
|
2009-10-06 23:55:41 +02:00
|
|
|
ff_j_rev_dct_arm (block);
|
2003-03-03 15:54:00 +01:00
|
|
|
ff_put_pixels_clamped(block, dest, line_size);
|
|
|
|
}
|
2009-10-06 23:55:41 +02:00
|
|
|
static void j_rev_dct_arm_add(uint8_t *dest, int line_size, DCTELEM *block)
|
2003-03-03 15:54:00 +01:00
|
|
|
{
|
2009-10-06 23:55:41 +02:00
|
|
|
ff_j_rev_dct_arm (block);
|
2003-03-03 15:54:00 +01:00
|
|
|
ff_add_pixels_clamped(block, dest, line_size);
|
|
|
|
}
|
2009-10-06 23:55:41 +02:00
|
|
|
static void simple_idct_arm_put(uint8_t *dest, int line_size, DCTELEM *block)
|
2003-07-07 13:19:18 +02:00
|
|
|
{
|
2009-10-06 23:55:41 +02:00
|
|
|
ff_simple_idct_arm (block);
|
2003-07-07 13:19:18 +02:00
|
|
|
ff_put_pixels_clamped(block, dest, line_size);
|
|
|
|
}
|
2009-10-06 23:55:41 +02:00
|
|
|
static void simple_idct_arm_add(uint8_t *dest, int line_size, DCTELEM *block)
|
2003-07-07 13:19:18 +02:00
|
|
|
{
|
2009-10-06 23:55:41 +02:00
|
|
|
ff_simple_idct_arm (block);
|
2003-07-07 13:19:18 +02:00
|
|
|
ff_add_pixels_clamped(block, dest, line_size);
|
|
|
|
}
|
2006-09-16 01:20:58 +02:00
|
|
|
|
2012-02-15 11:06:44 +01:00
|
|
|
void ff_dsputil_init_arm(DSPContext* c, AVCodecContext *avctx)
|
2001-08-13 23:38:25 +02:00
|
|
|
{
|
2011-07-21 11:05:15 +02:00
|
|
|
const int high_bit_depth = avctx->bits_per_raw_sample > 8;
|
2012-04-21 16:31:10 +02:00
|
|
|
int cpu_flags = av_get_cpu_flags();
|
2011-03-29 17:48:59 +02:00
|
|
|
|
2003-03-03 15:54:00 +01:00
|
|
|
ff_put_pixels_clamped = c->put_pixels_clamped;
|
|
|
|
ff_add_pixels_clamped = c->add_pixels_clamped;
|
|
|
|
|
2012-04-22 21:37:54 +02:00
|
|
|
if (!avctx->lowres && avctx->bits_per_raw_sample <= 8) {
|
2009-10-04 15:12:55 +02:00
|
|
|
if(avctx->idct_algo == FF_IDCT_AUTO ||
|
|
|
|
avctx->idct_algo == FF_IDCT_ARM){
|
2009-10-06 23:55:41 +02:00
|
|
|
c->idct_put = j_rev_dct_arm_put;
|
|
|
|
c->idct_add = j_rev_dct_arm_add;
|
|
|
|
c->idct = ff_j_rev_dct_arm;
|
2009-10-04 15:13:08 +02:00
|
|
|
c->idct_permutation_type = FF_LIBMPEG2_IDCT_PERM;
|
|
|
|
} else if (avctx->idct_algo == FF_IDCT_SIMPLEARM){
|
2009-10-06 23:55:41 +02:00
|
|
|
c->idct_put = simple_idct_arm_put;
|
|
|
|
c->idct_add = simple_idct_arm_add;
|
|
|
|
c->idct = ff_simple_idct_arm;
|
2009-10-04 15:13:08 +02:00
|
|
|
c->idct_permutation_type = FF_NO_IDCT_PERM;
|
2008-01-27 09:37:28 +01:00
|
|
|
}
|
2008-01-27 09:36:50 +01:00
|
|
|
}
|
2005-05-26 16:32:46 +02:00
|
|
|
|
2009-10-06 23:55:41 +02:00
|
|
|
c->add_pixels_clamped = ff_add_pixels_clamped_arm;
|
2009-10-06 23:55:37 +02:00
|
|
|
|
2011-03-29 17:48:59 +02:00
|
|
|
if (!high_bit_depth) {
|
2009-10-04 15:13:12 +02:00
|
|
|
c->put_pixels_tab[0][0] = ff_put_pixels16_arm;
|
|
|
|
c->put_pixels_tab[0][1] = ff_put_pixels16_x2_arm;
|
|
|
|
c->put_pixels_tab[0][2] = ff_put_pixels16_y2_arm;
|
|
|
|
c->put_pixels_tab[0][3] = ff_put_pixels16_xy2_arm;
|
|
|
|
c->put_pixels_tab[1][0] = ff_put_pixels8_arm;
|
|
|
|
c->put_pixels_tab[1][1] = ff_put_pixels8_x2_arm;
|
|
|
|
c->put_pixels_tab[1][2] = ff_put_pixels8_y2_arm;
|
|
|
|
c->put_pixels_tab[1][3] = ff_put_pixels8_xy2_arm;
|
2009-10-04 15:13:08 +02:00
|
|
|
|
2009-10-04 15:13:12 +02:00
|
|
|
c->put_no_rnd_pixels_tab[0][0] = ff_put_pixels16_arm;
|
|
|
|
c->put_no_rnd_pixels_tab[0][1] = ff_put_no_rnd_pixels16_x2_arm;
|
|
|
|
c->put_no_rnd_pixels_tab[0][2] = ff_put_no_rnd_pixels16_y2_arm;
|
|
|
|
c->put_no_rnd_pixels_tab[0][3] = ff_put_no_rnd_pixels16_xy2_arm;
|
|
|
|
c->put_no_rnd_pixels_tab[1][0] = ff_put_pixels8_arm;
|
|
|
|
c->put_no_rnd_pixels_tab[1][1] = ff_put_no_rnd_pixels8_x2_arm;
|
|
|
|
c->put_no_rnd_pixels_tab[1][2] = ff_put_no_rnd_pixels8_y2_arm;
|
|
|
|
c->put_no_rnd_pixels_tab[1][3] = ff_put_no_rnd_pixels8_xy2_arm;
|
2011-03-29 17:48:59 +02:00
|
|
|
}
|
2005-05-26 16:32:46 +02:00
|
|
|
|
2012-04-21 16:31:10 +02:00
|
|
|
if (have_armv5te(cpu_flags)) ff_dsputil_init_armv5te(c, avctx);
|
|
|
|
if (have_armv6(cpu_flags)) ff_dsputil_init_armv6(c, avctx);
|
|
|
|
if (have_vfp(cpu_flags)) ff_dsputil_init_vfp(c, avctx);
|
|
|
|
if (have_neon(cpu_flags)) ff_dsputil_init_neon(c, avctx);
|
2001-08-13 23:38:25 +02:00
|
|
|
}
|