summaryrefslogtreecommitdiff
path: root/libavcodec/arm/vp8dsp_init_arm.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/arm/vp8dsp_init_arm.c')
-rw-r--r--libavcodec/arm/vp8dsp_init_arm.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/arm/vp8dsp_init_arm.c b/libavcodec/arm/vp8dsp_init_arm.c
index b7897cd9fd..b684e9b434 100644
--- a/libavcodec/arm/vp8dsp_init_arm.c
+++ b/libavcodec/arm/vp8dsp_init_arm.c
@@ -1,18 +1,18 @@
/*
- * This file is part of Libav.
+ * This file is part of FFmpeg.
*
- * Libav is free software; you can redistribute it and/or
+ * 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.
*
- * Libav is distributed in the hope that it will be useful,
+ * 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 Libav; if not, write to the Free Software
+ * License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
@@ -23,12 +23,12 @@
#include "libavcodec/vp8dsp.h"
#include "vp8dsp.h"
-av_cold void ff_vp8dsp_init_arm(VP8DSPContext *dsp)
+av_cold void ff_vp8dsp_init_arm(VP8DSPContext *dsp, int vp7)
{
int cpu_flags = av_get_cpu_flags();
if (have_armv6(cpu_flags))
- ff_vp8dsp_init_armv6(dsp);
+ ff_vp8dsp_init_armv6(dsp, vp7);
if (have_neon(cpu_flags))
- ff_vp8dsp_init_neon(dsp);
+ ff_vp8dsp_init_neon(dsp, vp7);
}