source: roaraudio/libroardsp/fader.c @ 2438:42679f780d53

Last change on this file since 2438:42679f780d53 was 2438:42679f780d53, checked in by phi, 15 years ago

some basic code

File size: 2.1 KB
Line 
1//fader.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2009
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
27#define _CHECK_BASIC()   if ( state == NULL ) return -1
28#define _CHECK_CALCPCM() _CHECK_BASIC(); if ( frames == 0 ) return 0; if ( data == NULL ) return -1;
29
30int roar_fader_init         (struct roar_fader_state * state, float * poly, int coeff) {
31 _CHECK_BASIC();
32
33 if ( poly == NULL )
34  return -1;
35
36 if ( coeff < 2 )
37  return -1;
38
39 if ( coeff > ROAR_FADER_MAX_COEFF )
40  return -1;
41
42 memset(state, 0, sizeof(struct roar_fader_state));
43
44 state->rate  = -1;
45 state->coeff = coeff;
46
47 memcpy(&(state->poly), poly, sizeof(float)*coeff);
48
49 return 0;
50}
51
52int roar_fader_set_rate     (struct roar_fader_state * state, int rate) {
53 _CHECK_BASIC();
54
55 state->rate = rate;
56
57 return 0;
58}
59
60int roar_fader_set_startstop(struct roar_fader_state * state, ssize_t start, ssize_t stop) {
61 _CHECK_BASIC();
62
63 if ( start >= 0 )
64  state->start = start;
65
66 if ( stop  >= 0 )
67  state->stop  = stop;
68
69 return 0;
70}
71
72int roar_fader_calcpcm_i16n(struct roar_fader_state * state, int16_t * data, size_t frames, int channels) {
73 _CHECK_CALCPCM();
74
75 switch (channels) {
76  case 1: return roar_fader_calcpcm_i161(state, data, frames);
77 }
78
79 return -1;
80}
81
82int roar_fader_calcpcm_i161(struct roar_fader_state * state, int16_t * data, size_t frames) {
83 return -1;
84}
85
86//ll
Note: See TracBrowser for help on using the repository browser.