annotate ffmpeg/libavcodec/mips/celp_math_mips.c @ 13:844d341cf643 tip

Back up before ISMIR
author Yading Song <yading.song@eecs.qmul.ac.uk>
date Thu, 31 Oct 2013 13:17:06 +0000
parents 6840f77b83aa
children
rev   line source
yading@10 1 /*
yading@10 2 * Copyright (c) 2012
yading@10 3 * MIPS Technologies, Inc., California.
yading@10 4 *
yading@10 5 * Redistribution and use in source and binary forms, with or without
yading@10 6 * modification, are permitted provided that the following conditions
yading@10 7 * are met:
yading@10 8 * 1. Redistributions of source code must retain the above copyright
yading@10 9 * notice, this list of conditions and the following disclaimer.
yading@10 10 * 2. Redistributions in binary form must reproduce the above copyright
yading@10 11 * notice, this list of conditions and the following disclaimer in the
yading@10 12 * documentation and/or other materials provided with the distribution.
yading@10 13 * 3. Neither the name of the MIPS Technologies, Inc., nor the names of its
yading@10 14 * contributors may be used to endorse or promote products derived from
yading@10 15 * this software without specific prior written permission.
yading@10 16 *
yading@10 17 * THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND
yading@10 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
yading@10 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
yading@10 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE
yading@10 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
yading@10 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
yading@10 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
yading@10 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
yading@10 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
yading@10 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
yading@10 27 * SUCH DAMAGE.
yading@10 28 *
yading@10 29 * Author: Nedeljko Babic (nbabic@mips.com)
yading@10 30 *
yading@10 31 * Math operations optimized for MIPS
yading@10 32 *
yading@10 33 * This file is part of FFmpeg.
yading@10 34 *
yading@10 35 * FFmpeg is free software; you can redistribute it and/or
yading@10 36 * modify it under the terms of the GNU Lesser General Public
yading@10 37 * License as published by the Free Software Foundation; either
yading@10 38 * version 2.1 of the License, or (at your option) any later version.
yading@10 39 *
yading@10 40 * FFmpeg is distributed in the hope that it will be useful,
yading@10 41 * but WITHOUT ANY WARRANTY; without even the implied warranty of
yading@10 42 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
yading@10 43 * Lesser General Public License for more details.
yading@10 44 *
yading@10 45 * You should have received a copy of the GNU Lesser General Public
yading@10 46 * License along with FFmpeg; if not, write to the Free Software
yading@10 47 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
yading@10 48 */
yading@10 49
yading@10 50 /**
yading@10 51 * @file
yading@10 52 * Reference: libavcodec/celp_math.c
yading@10 53 */
yading@10 54 #include "config.h"
yading@10 55 #include "libavcodec/celp_math.h"
yading@10 56
yading@10 57 #if HAVE_INLINE_ASM
yading@10 58 static float ff_dot_productf_mips(const float* a, const float* b,
yading@10 59 int length)
yading@10 60 {
yading@10 61 float sum;
yading@10 62 const float* a_end = a + length;
yading@10 63
yading@10 64 __asm__ volatile (
yading@10 65 "mtc1 $zero, %[sum] \n\t"
yading@10 66 "blez %[length], ff_dot_productf_end%= \n\t"
yading@10 67 "ff_dot_productf_madd%=: \n\t"
yading@10 68 "lwc1 $f2, 0(%[a]) \n\t"
yading@10 69 "lwc1 $f1, 0(%[b]) \n\t"
yading@10 70 "addiu %[a], %[a], 4 \n\t"
yading@10 71 "addiu %[b], %[b], 4 \n\t"
yading@10 72 "madd.s %[sum], %[sum], $f1, $f2 \n\t"
yading@10 73 "bne %[a], %[a_end], ff_dot_productf_madd%= \n\t"
yading@10 74 "ff_dot_productf_end%=: \n\t"
yading@10 75
yading@10 76 : [sum] "=&f" (sum), [a] "+r" (a), [b] "+r" (b)
yading@10 77 : [a_end]"r"(a_end), [length] "r" (length)
yading@10 78 : "$f1", "$f2", "memory"
yading@10 79 );
yading@10 80 return sum;
yading@10 81 }
yading@10 82 #endif /* HAVE_INLINE_ASM */
yading@10 83
yading@10 84 void ff_celp_math_init_mips(CELPMContext *c)
yading@10 85 {
yading@10 86 #if HAVE_INLINE_ASM
yading@10 87 c->dot_productf = ff_dot_productf_mips;
yading@10 88 #endif
yading@10 89 }