Mercurial > libavcodec.hg
annotate bfin/mathops.h @ 12529:9a3f2beae2a9 libavcodec
Fix index_entries pos:
It was being set wrong for files with data_offset > 0
Patch by Michael Chinen, mchinen gmail
author | cehoyos |
---|---|
date | Mon, 27 Sep 2010 22:17:58 +0000 |
parents | 25136467a218 |
children |
rev | line source |
---|---|
5614 | 1 /* |
8776 | 2 * simple math operations |
5614 | 3 * |
4 * Copyright (C) 2007 Marc Hoffman <mmhoffm@gmail.com> | |
5 * | |
6 * This file is part of FFmpeg. | |
7 * | |
8 * FFmpeg is free software; you can redistribute it and/or | |
9 * modify it under the terms of the GNU Lesser General Public | |
10 * License as published by the Free Software Foundation; either | |
11 * version 2.1 of the License, or (at your option) any later version. | |
12 * | |
13 * FFmpeg is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 * Lesser General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU Lesser General Public | |
19 * License along with FFmpeg; if not, write to the Free Software | |
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
21 */ | |
7760 | 22 #ifndef AVCODEC_BFIN_MATHOPS_H |
23 #define AVCODEC_BFIN_MATHOPS_H | |
5614 | 24 |
10080 | 25 #include "config.h" |
26 | |
8590 | 27 #if CONFIG_MPEGAUDIO_HP |
5614 | 28 #define MULH(X,Y) ({ int xxo; \ |
8031 | 29 __asm__ ( \ |
5614 | 30 "a1 = %2.L * %1.L (FU);\n\t" \ |
31 "a1 = a1 >> 16;\n\t" \ | |
32 "a1 += %2.H * %1.L (IS,M);\n\t" \ | |
33 "a0 = %1.H * %2.H, a1+= %1.H * %2.L (IS,M);\n\t"\ | |
34 "a1 = a1 >>> 16;\n\t" \ | |
35 "%0 = (a0 += a1);\n\t" \ | |
5689
84bc9138be8f
properly tell the compiler that A0 and A1 are clobbered
mhoffman
parents:
5619
diff
changeset
|
36 : "=d" (xxo) : "d" (X), "d" (Y) : "A0","A1"); xxo; }) |
5614 | 37 #else |
38 #define MULH(X,Y) ({ int xxo; \ | |
8031 | 39 __asm__ ( \ |
5614 | 40 "a1 = %2.H * %1.L (IS,M);\n\t" \ |
41 "a0 = %1.H * %2.H, a1+= %1.H * %2.L (IS,M);\n\t"\ | |
42 "a1 = a1 >>> 16;\n\t" \ | |
43 "%0 = (a0 += a1);\n\t" \ | |
5689
84bc9138be8f
properly tell the compiler that A0 and A1 are clobbered
mhoffman
parents:
5619
diff
changeset
|
44 : "=d" (xxo) : "d" (X), "d" (Y) : "A0","A1"); xxo; }) |
5614 | 45 #endif |
46 | |
47 /* signed 16x16 -> 32 multiply */ | |
48 #define MUL16(a, b) ({ int xxo; \ | |
8031 | 49 __asm__ ( \ |
5614 | 50 "%0 = %1.l*%2.l (is);\n\t" \ |
5689
84bc9138be8f
properly tell the compiler that A0 and A1 are clobbered
mhoffman
parents:
5619
diff
changeset
|
51 : "=W" (xxo) : "d" (a), "d" (b) : "A1"); \ |
5614 | 52 xxo; }) |
53 | |
7760 | 54 #endif /* AVCODEC_BFIN_MATHOPS_H */ |