3728
|
1 /*
|
|
2 * Copyright (c) 2006 Michael Benjamin
|
|
3 *
|
|
4 * This library is free software; you can redistribute it and/or
|
|
5 * modify it under the terms of the GNU Lesser General Public
|
|
6 * License as published by the Free Software Foundation; either
|
|
7 * version 2 of the License, or (at your option) any later version.
|
|
8 *
|
|
9 * This library is distributed in the hope that it will be useful,
|
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
12 * Lesser General Public License for more details.
|
|
13 *
|
|
14 * You should have received a copy of the GNU Lesser General Public
|
|
15 * License along with this library; if not, write to the Free Software
|
|
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
17 */
|
|
18
|
|
19 #include "../avcodec.h"
|
|
20 #include "../dsputil.h"
|
|
21
|
|
22 static int sad8x8_bfin( void *c, uint8_t *blk1, uint8_t *blk2, int line_size, int h )
|
|
23 {
|
|
24 int sum;
|
|
25 __asm__ __volatile__ (
|
|
26 "P0 = %1;" // blk1
|
|
27 "P1 = %2;" // blk2
|
|
28 "P2 = %3;\n" // h
|
|
29 "I0 = P0;"
|
|
30 "I1 = P1;\n"
|
|
31 "A0 = 0;"
|
|
32 "A1 = 0;\n"
|
|
33 "M0 = P2;\n"
|
|
34 "P3 = 32;\n"
|
|
35 "LSETUP (sad8x8LoopBegin, sad8x8LoopEnd) LC0=P3;\n"
|
|
36 "sad8x8LoopBegin:\n"
|
|
37 " DISALGNEXCPT || R0 = [I0] || R2 = [I1];\n"
|
|
38 " DISALGNEXCPT || R1 = [I0++] || R3 = [I1++];\n"
|
|
39 "sad8x8LoopEnd:\n"
|
|
40 " SAA ( R1:0 , R3:2 );\n"
|
|
41 "R3 = A1.L + A1.H, R2 = A0.L + A0.H;\n"
|
|
42 "%0 = R2 + R3 (S);\n"
|
|
43 : "=&d" (sum)
|
|
44 : "m"(blk1), "m"(blk2), "m"(h)
|
|
45 : "P0","P1","P2","I0","I1","A0","A1","R0","R1","R2","R3");
|
|
46 return sum;
|
|
47 }
|
|
48
|
|
49 void dsputil_init_bfin( DSPContext* c, AVCodecContext *avctx )
|
|
50 {
|
|
51 c->pix_abs[1][0] = sad8x8_bfin;
|
|
52 c->sad[1] = sad8x8_bfin;
|
|
53 }
|