2006-09-20 01:22:29 +03:00
|
|
|
/*
|
|
|
|
* simple math operations
|
2009-01-19 17:46:40 +02:00
|
|
|
* Copyright (c) 2001, 2002 Fabrice Bellard
|
2006-09-20 01:22:29 +03:00
|
|
|
* Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> et al
|
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-09-20 01:22:29 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-20 01:22:29 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-09-20 01:22:29 +03: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 18:30:46 +03:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-09-20 01:22:29 +03:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2008-08-31 10:39:47 +03:00
|
|
|
#ifndef AVCODEC_PPC_MATHOPS_H
|
|
|
|
#define AVCODEC_PPC_MATHOPS_H
|
2007-06-17 03:01:30 +03:00
|
|
|
|
2009-01-24 19:44:46 +02:00
|
|
|
#if HAVE_PPC4XX
|
2006-09-20 01:22:29 +03:00
|
|
|
/* signed 16x16 -> 32 multiply add accumulate */
|
2008-07-20 21:58:30 +03:00
|
|
|
#define MAC16(rt, ra, rb) \
|
2008-10-16 16:34:09 +03:00
|
|
|
__asm__ ("maclhw %0, %2, %3" : "=r" (rt) : "0" (rt), "r" (ra), "r" (rb));
|
2006-09-20 01:22:29 +03:00
|
|
|
|
|
|
|
/* signed 16x16 -> 32 multiply */
|
2008-07-20 21:58:30 +03:00
|
|
|
#define MUL16(ra, rb) \
|
|
|
|
({ int __rt; \
|
2008-10-16 16:34:09 +03:00
|
|
|
__asm__ ("mullhw %0, %1, %2" : "=r" (__rt) : "r" (ra), "r" (rb)); \
|
2008-07-20 21:58:30 +03:00
|
|
|
__rt; })
|
2006-09-20 01:22:29 +03:00
|
|
|
#endif
|
2007-06-17 03:01:30 +03:00
|
|
|
|
2008-08-31 10:39:47 +03:00
|
|
|
#endif /* AVCODEC_PPC_MATHOPS_H */
|