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