2001-08-13 21:38:25 +00:00
|
|
|
/*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2006-10-07 15:30:46 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2002-05-25 22:45:33 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2001-08-13 21:38:25 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2001-08-13 21:38:25 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-25 22:45:33 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-08-13 21:38:25 +00:00
|
|
|
*
|
2002-05-25 22:45:33 +00:00
|
|
|
* 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
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-08-13 21:38:25 +00:00
|
|
|
*/
|
|
|
|
|
2014-02-12 20:28:44 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2013-02-01 09:31:59 +00:00
|
|
|
#include "libavutil/attributes.h"
|
2014-02-12 20:28:44 +00:00
|
|
|
#include "libavutil/cpu.h"
|
2012-04-21 14:31:10 +00:00
|
|
|
#include "libavutil/arm/cpu.h"
|
2014-02-12 20:28:44 +00:00
|
|
|
#include "libavcodec/avcodec.h"
|
2014-02-08 01:59:58 +00:00
|
|
|
#include "libavcodec/me_cmp.h"
|
2014-07-08 15:47:52 +00:00
|
|
|
#include "libavcodec/mpegvideo.h"
|
|
|
|
|
|
|
|
int ff_pix_abs16_armv6(MpegEncContext *s, uint8_t *blk1, uint8_t *blk2,
|
2014-11-21 12:57:41 +00:00
|
|
|
ptrdiff_t stride, int h);
|
2014-07-08 15:47:52 +00:00
|
|
|
int ff_pix_abs16_x2_armv6(MpegEncContext *s, uint8_t *blk1, uint8_t *blk2,
|
2014-11-21 12:57:41 +00:00
|
|
|
ptrdiff_t stride, int h);
|
2014-07-08 15:47:52 +00:00
|
|
|
int ff_pix_abs16_y2_armv6(MpegEncContext *s, uint8_t *blk1, uint8_t *blk2,
|
2014-11-21 12:57:41 +00:00
|
|
|
ptrdiff_t stride, int h);
|
2014-07-08 15:47:52 +00:00
|
|
|
|
|
|
|
int ff_pix_abs8_armv6(MpegEncContext *s, uint8_t *blk1, uint8_t *blk2,
|
2014-11-21 12:57:41 +00:00
|
|
|
ptrdiff_t stride, int h);
|
2014-07-08 15:47:52 +00:00
|
|
|
|
|
|
|
int ff_sse16_armv6(MpegEncContext *s, uint8_t *blk1, uint8_t *blk2,
|
2014-11-21 12:57:41 +00:00
|
|
|
ptrdiff_t stride, int h);
|
2014-07-08 15:47:52 +00:00
|
|
|
|
2014-02-08 01:59:58 +00:00
|
|
|
av_cold void ff_me_cmp_init_arm(MECmpContext *c, AVCodecContext *avctx)
|
2001-08-13 21:38:25 +00:00
|
|
|
{
|
2012-04-21 14:31:10 +00:00
|
|
|
int cpu_flags = av_get_cpu_flags();
|
2011-03-29 15:48:59 +00:00
|
|
|
|
2014-07-08 15:47:52 +00:00
|
|
|
if (have_armv6(cpu_flags)) {
|
|
|
|
c->pix_abs[0][0] = ff_pix_abs16_armv6;
|
|
|
|
c->pix_abs[0][1] = ff_pix_abs16_x2_armv6;
|
|
|
|
c->pix_abs[0][2] = ff_pix_abs16_y2_armv6;
|
|
|
|
|
|
|
|
c->pix_abs[1][0] = ff_pix_abs8_armv6;
|
|
|
|
|
|
|
|
c->sad[0] = ff_pix_abs16_armv6;
|
|
|
|
c->sad[1] = ff_pix_abs8_armv6;
|
|
|
|
|
|
|
|
c->sse[0] = ff_sse16_armv6;
|
|
|
|
}
|
2001-08-13 21:38:25 +00:00
|
|
|
}
|