2008-06-17 14:42:51 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2008 Siarhei Siamashka <ssvb@users.sourceforge.net>
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2008-06-17 14:42:51 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2008-06-17 14:42:51 +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,
|
2008-06-17 14:42:51 +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
|
2008-06-17 14:42:51 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libavcodec/dsputil.h"
|
2009-10-04 13:12:55 +00:00
|
|
|
#include "dsputil_arm.h"
|
2008-06-17 14:42:51 +00:00
|
|
|
|
2011-01-13 20:28:06 +00:00
|
|
|
void ff_vector_fmul_vfp(float *dst, const float *src0,
|
|
|
|
const float *src1, int len);
|
2008-12-03 15:23:30 +00:00
|
|
|
void ff_vector_fmul_reverse_vfp(float *dst, const float *src0,
|
|
|
|
const float *src1, int len);
|
2008-06-17 14:42:51 +00:00
|
|
|
|
2009-10-04 13:13:02 +00:00
|
|
|
void ff_dsputil_init_vfp(DSPContext* c, AVCodecContext *avctx)
|
2008-06-17 14:42:51 +00:00
|
|
|
{
|
2011-05-27 19:18:26 +00:00
|
|
|
if (!HAVE_VFPV3)
|
|
|
|
c->vector_fmul = ff_vector_fmul_vfp;
|
2008-10-27 00:25:16 +00:00
|
|
|
c->vector_fmul_reverse = ff_vector_fmul_reverse_vfp;
|
2008-06-17 14:42:51 +00:00
|
|
|
}
|