dsputil_init_vfp.c 1.11 KB
Newer Older
1 2 3
/*
 * Copyright (c) 2008 Siarhei Siamashka <ssvb@users.sourceforge.net>
 *
4
 * This file is part of Libav.
5
 *
6
 * Libav is free software; you can redistribute it and/or
7 8 9 10
 * 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.
 *
11
 * Libav is distributed in the hope that it will be useful,
12 13 14 15 16
 * 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
17
 * License along with Libav; if not, write to the Free Software
18 19 20 21
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include "libavcodec/dsputil.h"
22
#include "dsputil_arm.h"
23

24 25
void ff_vector_fmul_reverse_vfp(float *dst, const float *src0,
                                const float *src1, int len);
26

27
void ff_dsputil_init_vfp(DSPContext* c, AVCodecContext *avctx)
28
{
29
    c->vector_fmul_reverse = ff_vector_fmul_reverse_vfp;
30
}