smb improvements (rodries)
[libogc.git] / libmad / fixed.c
blob8fe5f217bb80817f53d9ab5196783f5309fca9a7
1 /*
2 * libmad - MPEG audio decoder library
3 * Copyright (C) 2000-2003 Underbit Technologies, Inc.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 # ifdef HAVE_CONFIG_H
22 # include "config.h"
23 # endif
25 # include "global.h"
27 # include "fixed.h"
30 * NAME: fixed->abs()
31 * DESCRIPTION: return absolute value of a fixed-point number
33 mad_fixed_t mad_f_abs(mad_fixed_t x)
35 return x < 0 ? -x : x;
39 * NAME: fixed->div()
40 * DESCRIPTION: perform division using fixed-point math
42 mad_fixed_t mad_f_div(mad_fixed_t x, mad_fixed_t y)
44 mad_fixed_t q, r;
45 u32 bits;
47 q = mad_f_abs(x / y);
49 if (x < 0) {
50 x = -x;
51 y = -y;
54 r = x % y;
56 if (y < 0) {
57 x = -x;
58 y = -y;
61 if (q > mad_f_intpart(MAD_F_MAX) &&
62 !(q == -mad_f_intpart(MAD_F_MIN) && r == 0 && (x < 0) != (y < 0)))
63 return 0;
65 for (bits = MAD_F_FRACBITS; bits && r; --bits) {
66 q <<= 1, r <<= 1;
67 if (r >= y)
68 r -= y, ++q;
71 /* round */
72 if (2 * r >= y)
73 ++q;
75 /* fix sign */
76 if ((x < 0) != (y < 0))
77 q = -q;
79 return q << bits;