2006-09-19 22:22:29 +00:00
|
|
|
/*
|
|
|
|
* simple math operations
|
|
|
|
* Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> et al
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-09-19 22:22:29 +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.
|
2006-09-19 22:22:29 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-09-19 22:22:29 +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
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-09-19 22:22:29 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2008-12-17 00:54:54 +00:00
|
|
|
#ifndef AVCODEC_ARM_MATHOPS_H
|
|
|
|
#define AVCODEC_ARM_MATHOPS_H
|
2007-06-17 00:01:30 +00:00
|
|
|
|
2008-10-29 23:43:55 +00:00
|
|
|
#include <stdint.h>
|
2009-08-24 10:59:14 +00:00
|
|
|
#include "config.h"
|
2008-10-29 23:43:55 +00:00
|
|
|
#include "libavutil/common.h"
|
|
|
|
|
2009-03-05 21:20:13 +00:00
|
|
|
#if HAVE_INLINE_ASM
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if HAVE_ARMV6
|
2011-06-05 12:44:28 +00:00
|
|
|
#define MULH MULH
|
2008-07-15 19:06:25 +00:00
|
|
|
static inline av_const int MULH(int a, int b)
|
|
|
|
{
|
|
|
|
int r;
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ ("smmul %0, %1, %2" : "=r"(r) : "r"(a), "r"(b));
|
2008-07-15 19:06:25 +00:00
|
|
|
return r;
|
|
|
|
}
|
2011-05-31 20:04:01 +00:00
|
|
|
#endif
|
2008-07-15 19:06:29 +00:00
|
|
|
|
2008-07-15 19:06:32 +00:00
|
|
|
#define MLS64(d, a, b) MAC64(d, -(a), b)
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if HAVE_ARMV5TE
|
2006-09-19 22:22:29 +00:00
|
|
|
|
|
|
|
/* signed 16x16 -> 32 multiply add accumulate */
|
2008-11-06 01:33:26 +00:00
|
|
|
# define MAC16(rt, ra, rb) \
|
|
|
|
__asm__ ("smlabb %0, %1, %2, %0" : "+r"(rt) : "r"(ra), "r"(rb));
|
|
|
|
|
2006-09-19 22:22:29 +00:00
|
|
|
/* signed 16x16 -> 32 multiply */
|
2008-11-06 01:33:28 +00:00
|
|
|
# define MUL16 MUL16
|
2009-03-01 12:11:02 +00:00
|
|
|
static inline av_const int MUL16(int ra, int rb)
|
2008-11-06 01:33:28 +00:00
|
|
|
{
|
|
|
|
int rt;
|
|
|
|
__asm__ ("smulbb %0, %1, %2" : "=r"(rt) : "r"(ra), "r"(rb));
|
|
|
|
return rt;
|
|
|
|
}
|
2006-09-19 22:22:29 +00:00
|
|
|
|
|
|
|
#endif
|
2007-06-17 00:01:30 +00:00
|
|
|
|
2009-01-27 16:06:38 +00:00
|
|
|
#define mid_pred mid_pred
|
|
|
|
static inline av_const int mid_pred(int a, int b, int c)
|
|
|
|
{
|
|
|
|
int m;
|
2011-05-27 21:49:28 +00:00
|
|
|
__asm__ (
|
2009-01-27 16:06:38 +00:00
|
|
|
"mov %0, %2 \n\t"
|
|
|
|
"cmp %1, %2 \n\t"
|
2011-06-14 10:29:48 +00:00
|
|
|
"itt gt \n\t"
|
2009-01-27 16:06:38 +00:00
|
|
|
"movgt %0, %1 \n\t"
|
|
|
|
"movgt %1, %2 \n\t"
|
|
|
|
"cmp %1, %3 \n\t"
|
2011-06-14 10:29:48 +00:00
|
|
|
"it le \n\t"
|
2009-01-27 16:06:38 +00:00
|
|
|
"movle %1, %3 \n\t"
|
|
|
|
"cmp %0, %1 \n\t"
|
2011-06-14 10:29:48 +00:00
|
|
|
"it gt \n\t"
|
2009-01-27 16:06:38 +00:00
|
|
|
"movgt %0, %1 \n\t"
|
|
|
|
: "=&r"(m), "+r"(a)
|
2011-05-27 20:59:46 +00:00
|
|
|
: "r"(b), "r"(c)
|
|
|
|
: "cc");
|
2009-01-27 16:06:38 +00:00
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
2009-03-05 21:20:13 +00:00
|
|
|
#endif /* HAVE_INLINE_ASM */
|
|
|
|
|
2008-12-17 00:54:54 +00:00
|
|
|
#endif /* AVCODEC_ARM_MATHOPS_H */
|