source: roaraudio/libroardsp/filter_downmix.c @ 1131:bca464362519

Last change on this file since 1131:bca464362519 was 1104:bfe959698403, checked in by phi, 15 years ago

disable options needing libm

File size: 2.8 KB
Line 
1//downmix.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - December 2008
5 *
6 *  This file is part of libroardsp a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  libroardsp is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
25#include "libroardsp.h"
26
27int roardsp_downmix_init  (struct roardsp_filter * filter, struct roar_stream * stream, int id) {
28 int mode = ROARDSP_DOWNMIX_ARITHMETIC;
29
30 roardsp_downmix_ctl(filter, ROARDSP_FCTL_MODE, &mode);
31
32 ROAR_DBG("roardsp_downmix_init(*) = 0");
33 return 0;
34}
35
36int roardsp_downmix_calc162  (struct roardsp_filter * filter, void * data, size_t samples) {
37 int16_t * samp = (int16_t *) data;
38 register int32_t mode = (ROAR_INSTINT)filter->inst;
39 register union {
40//  int16_t i16;
41  int32_t i32;
42  int64_t i64;
43 } s;
44 size_t i;
45
46 ROAR_DBG("roardsp_downmix_calc162(*): mode=%i", mode);
47
48 switch (mode) {
49  case ROARDSP_DOWNMIX_LEFT:
50    for (i = 0; i < samples; i += 2)
51     samp[i+1] = samp[i];
52   break;
53  case ROARDSP_DOWNMIX_RIGHT:
54    for (i = 0; i < samples; i += 2)
55     samp[i] = samp[i+1];
56   break;
57  case ROARDSP_DOWNMIX_ARITHMETIC:
58    for (i = 0; i < samples; i += 2) {
59     s.i32     = (samp[i] + samp[i+1])/2;
60     samp[i  ] = s.i32;
61     samp[i+1] = s.i32;
62    }
63   break;
64#ifdef ROAR_HAVE_LIBM
65  case ROARDSP_DOWNMIX_RMS:
66    for (i = 0; i < samples; i += 2) {
67     s.i64      = (int64_t)samp[i]*samp[i] + (int64_t)samp[i+1]*samp[i+1];
68#ifdef ROAR_HAVE_SQRTL
69     s.i64      = sqrtl((long double)s.i64/2.0);
70#else
71     s.i64      = sqrt((double)s.i64/2.0);
72#endif
73//     s.i64     /=  2;
74
75     if ( (samp[i] + samp[i+1]) < 0 )
76      s.i64    *= -1;
77
78     samp[i  ]  = s.i64;
79     samp[i+1]  = s.i64;
80    }
81   break;
82#endif
83  default:
84   ROAR_DBG("roardsp_downmix_calc162(*) = -1 // unknown mode");
85   return -1;
86  break;
87 }
88
89 ROAR_DBG("roardsp_downmix_calc162(*) = 0");
90 return 0;
91}
92
93int roardsp_downmix_ctl   (struct roardsp_filter * filter, int cmd, void * data) {
94 int32_t old;
95
96 if ( cmd == ROARDSP_FCTL_MODE ) {
97  old = (ROAR_INSTINT)filter->inst;
98  filter->inst = (void*)(ROAR_INSTINT)*(int32_t*)data;
99  *(int32_t*)data = old;
100 } else {
101  return -1;
102 }
103
104
105 return 0;
106}
107
108//ll
Note: See TracBrowser for help on using the repository browser.