2010-08-25 16:42:28 +03:00
|
|
|
/*
|
|
|
|
* VP6 MMX/SSE2 optimizations
|
|
|
|
* Copyright (C) 2009 Sebastien Lucas <sebastien.lucas@gmail.com>
|
|
|
|
* Copyright (C) 2009 Zuxy Meng <zuxy.meng@gmail.com>
|
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
* 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
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2014-01-09 16:06:31 +03:00
|
|
|
#include "libavutil/attributes.h"
|
2010-09-08 18:07:14 +03:00
|
|
|
#include "libavutil/cpu.h"
|
2012-08-29 20:01:05 +03:00
|
|
|
#include "libavutil/x86/cpu.h"
|
2010-08-25 16:42:28 +03:00
|
|
|
#include "libavcodec/vp56dsp.h"
|
2010-08-25 16:44:16 +03:00
|
|
|
|
2016-08-23 23:23:45 +02:00
|
|
|
void ff_vp6_filter_diag4_mmx(uint8_t *dst, uint8_t *src, ptrdiff_t stride,
|
2010-08-25 16:44:16 +03:00
|
|
|
const int16_t *h_weights,const int16_t *v_weights);
|
2016-08-23 23:23:45 +02:00
|
|
|
void ff_vp6_filter_diag4_sse2(uint8_t *dst, uint8_t *src, ptrdiff_t stride,
|
2010-08-25 16:44:16 +03:00
|
|
|
const int16_t *h_weights,const int16_t *v_weights);
|
2010-08-25 16:42:28 +03:00
|
|
|
|
2016-08-24 12:30:15 +02:00
|
|
|
av_cold void ff_vp6dsp_init_x86(VP56DSPContext *c)
|
2010-08-25 16:42:28 +03:00
|
|
|
{
|
2013-07-17 21:19:24 +03:00
|
|
|
int cpu_flags = av_get_cpu_flags();
|
2010-08-25 16:42:28 +03:00
|
|
|
|
2012-07-27 08:09:46 +03:00
|
|
|
#if ARCH_X86_32
|
2012-10-06 21:28:56 +03:00
|
|
|
if (EXTERNAL_MMX(cpu_flags)) {
|
|
|
|
c->vp6_filter_diag4 = ff_vp6_filter_diag4_mmx;
|
|
|
|
}
|
2012-07-27 08:09:46 +03:00
|
|
|
#endif
|
2012-10-06 21:28:56 +03:00
|
|
|
if (EXTERNAL_SSE2(cpu_flags)) {
|
|
|
|
c->vp6_filter_diag4 = ff_vp6_filter_diag4_sse2;
|
2010-08-25 16:42:28 +03:00
|
|
|
}
|
|
|
|
}
|