2009-10-04 13:12:55 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2009 Mans Rullgard <mans@mansr.com>
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2009-10-04 13:12:55 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2009-10-04 13:12:55 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2009-10-04 13:12:55 +00: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 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2009-10-04 13:12:55 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2010-02-09 16:13:21 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "libavcodec/avcodec.h"
|
2009-10-04 13:12:55 +00:00
|
|
|
#include "dsputil_arm.h"
|
|
|
|
|
2013-01-20 00:02:29 +00:00
|
|
|
void ff_simple_idct_armv6(int16_t *data);
|
|
|
|
void ff_simple_idct_put_armv6(uint8_t *dest, int line_size, int16_t *data);
|
|
|
|
void ff_simple_idct_add_armv6(uint8_t *dest, int line_size, int16_t *data);
|
2009-10-04 13:12:55 +00:00
|
|
|
|
2013-01-20 00:02:29 +00:00
|
|
|
void ff_add_pixels_clamped_armv6(const int16_t *block,
|
2009-10-06 21:55:35 +00:00
|
|
|
uint8_t *restrict pixels,
|
|
|
|
int line_size);
|
|
|
|
|
2013-01-20 00:02:29 +00:00
|
|
|
void ff_get_pixels_armv6(int16_t *block, const uint8_t *pixels, int stride);
|
|
|
|
void ff_diff_pixels_armv6(int16_t *block, const uint8_t *s1,
|
2010-02-09 16:13:41 +00:00
|
|
|
const uint8_t *s2, int stride);
|
2010-02-09 16:13:38 +00:00
|
|
|
|
2010-02-09 16:13:26 +00:00
|
|
|
int ff_pix_abs16_armv6(void *s, uint8_t *blk1, uint8_t *blk2,
|
|
|
|
int line_size, int h);
|
2010-02-09 16:13:29 +00:00
|
|
|
int ff_pix_abs16_x2_armv6(void *s, uint8_t *blk1, uint8_t *blk2,
|
|
|
|
int line_size, int h);
|
2010-02-09 16:13:31 +00:00
|
|
|
int ff_pix_abs16_y2_armv6(void *s, uint8_t *blk1, uint8_t *blk2,
|
|
|
|
int line_size, int h);
|
2010-02-09 16:13:26 +00:00
|
|
|
|
2010-02-09 16:13:34 +00:00
|
|
|
int ff_pix_abs8_armv6(void *s, uint8_t *blk1, uint8_t *blk2,
|
|
|
|
int line_size, int h);
|
|
|
|
|
2010-02-09 16:13:45 +00:00
|
|
|
int ff_sse16_armv6(void *s, uint8_t *blk1, uint8_t *blk2,
|
|
|
|
int line_size, int h);
|
|
|
|
|
2010-02-09 16:13:49 +00:00
|
|
|
int ff_pix_norm1_armv6(uint8_t *pix, int line_size);
|
2010-02-09 16:13:52 +00:00
|
|
|
int ff_pix_sum_armv6(uint8_t *pix, int line_size);
|
2010-02-09 16:13:49 +00:00
|
|
|
|
2012-03-30 21:34:22 +00:00
|
|
|
av_cold void ff_dsputil_init_armv6(DSPContext *c, AVCodecContext *avctx)
|
2009-10-04 13:12:55 +00:00
|
|
|
{
|
2011-07-21 09:05:15 +00:00
|
|
|
const int high_bit_depth = avctx->bits_per_raw_sample > 8;
|
2011-03-29 15:48:59 +00:00
|
|
|
|
2012-04-12 12:55:49 +00:00
|
|
|
if (avctx->bits_per_raw_sample <= 8 &&
|
2011-07-20 15:05:05 +00:00
|
|
|
(avctx->idct_algo == FF_IDCT_AUTO ||
|
|
|
|
avctx->idct_algo == FF_IDCT_SIMPLEARMV6)) {
|
2009-10-04 13:13:08 +00:00
|
|
|
c->idct_put = ff_simple_idct_put_armv6;
|
|
|
|
c->idct_add = ff_simple_idct_add_armv6;
|
|
|
|
c->idct = ff_simple_idct_armv6;
|
|
|
|
c->idct_permutation_type = FF_LIBMPEG2_IDCT_PERM;
|
2009-10-04 13:12:55 +00:00
|
|
|
}
|
2009-10-06 21:55:35 +00:00
|
|
|
|
2011-07-21 01:31:57 +00:00
|
|
|
if (!high_bit_depth)
|
|
|
|
c->get_pixels = ff_get_pixels_armv6;
|
2009-10-06 21:55:35 +00:00
|
|
|
c->add_pixels_clamped = ff_add_pixels_clamped_armv6;
|
2010-02-09 16:13:41 +00:00
|
|
|
c->diff_pixels = ff_diff_pixels_armv6;
|
2010-02-09 16:13:26 +00:00
|
|
|
|
|
|
|
c->pix_abs[0][0] = ff_pix_abs16_armv6;
|
2010-02-09 16:13:29 +00:00
|
|
|
c->pix_abs[0][1] = ff_pix_abs16_x2_armv6;
|
2010-02-09 16:13:31 +00:00
|
|
|
c->pix_abs[0][2] = ff_pix_abs16_y2_armv6;
|
2010-02-09 16:13:26 +00:00
|
|
|
|
2010-02-09 16:13:34 +00:00
|
|
|
c->pix_abs[1][0] = ff_pix_abs8_armv6;
|
|
|
|
|
2010-02-09 16:13:26 +00:00
|
|
|
c->sad[0] = ff_pix_abs16_armv6;
|
2010-02-09 16:13:34 +00:00
|
|
|
c->sad[1] = ff_pix_abs8_armv6;
|
2010-02-09 16:13:45 +00:00
|
|
|
|
|
|
|
c->sse[0] = ff_sse16_armv6;
|
2010-02-09 16:13:49 +00:00
|
|
|
|
|
|
|
c->pix_norm1 = ff_pix_norm1_armv6;
|
2010-02-09 16:13:52 +00:00
|
|
|
c->pix_sum = ff_pix_sum_armv6;
|
2009-10-04 13:12:55 +00:00
|
|
|
}
|