2001-08-14 00:38:25 +03:00
|
|
|
/*
|
2008-12-17 02:54:54 +02:00
|
|
|
* ARM optimized DSP utils
|
2009-01-19 17:46:40 +02:00
|
|
|
* Copyright (c) 2001 Lionel Ulmer
|
2001-08-14 00:38:25 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-05-26 01:45:33 +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.
|
2001-08-14 00:38:25 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2001-08-14 00:38:25 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-26 01:45:33 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-08-14 00:38:25 +03:00
|
|
|
*
|
2002-05-26 01:45:33 +03:00
|
|
|
* 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-01-13 00:43:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-08-14 00:38:25 +03:00
|
|
|
*/
|
|
|
|
|
2014-02-12 23:28:44 +03:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2013-02-01 12:31:59 +03:00
|
|
|
#include "libavutil/attributes.h"
|
2014-02-12 23:28:44 +03:00
|
|
|
#include "libavutil/cpu.h"
|
2012-04-21 17:31:10 +03:00
|
|
|
#include "libavutil/arm/cpu.h"
|
2014-02-12 23:28:44 +03:00
|
|
|
#include "libavcodec/avcodec.h"
|
|
|
|
#include "libavcodec/dsputil.h"
|
2009-10-04 16:12:55 +03:00
|
|
|
#include "dsputil_arm.h"
|
2001-08-14 00:38:25 +03:00
|
|
|
|
2014-07-08 18:31:15 +03:00
|
|
|
av_cold void ff_dsputil_init_arm(DSPContext *c, AVCodecContext *avctx)
|
2001-08-14 00:38:25 +03:00
|
|
|
{
|
2012-04-21 17:31:10 +03:00
|
|
|
int cpu_flags = av_get_cpu_flags();
|
2011-03-29 18:48:59 +03:00
|
|
|
|
2014-01-30 17:03:55 +03:00
|
|
|
if (have_armv6(cpu_flags))
|
2014-07-08 18:31:15 +03:00
|
|
|
ff_dsputil_init_armv6(c, avctx);
|
2001-08-14 00:38:25 +03:00
|
|
|
}
|