File: test_epl.cpp

package info (click to toggle)
pyepl 1.1.0-3.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,120 kB
  • sloc: cpp: 7,986; python: 6,026; makefile: 360; ansic: 132
file content (62 lines) | stat: -rw-r--r-- 1,079 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// PyEPL: hardware/sound/test_epl.cpp
//
// Copyright (C) 2003-2005 Michael J. Kahana
// Authors: Ian Schleifer, Per Sederberg, Aaron Geller, Josh Jacobs
// URL: http://memory.psych.upenn.edu/programming/pyepl
//
// Distributed under the terms of the GNU Lesser General Public License
// (LGPL). See the license.txt that came with this file.

#include <iostream>
using std::cout;
using std::endl;


int main(int argc, char *argv[])
{

  int maxsecs = 60;
  int secs = 10;
  int chans = 2;
  int rate = 44100;
  long buflen = secs*chans*rate;
  long maxbuflen = maxsecs*chans*rate;
  eplSound *sound = new eplSound(maxsecs,maxsecs,rate);
  
  MY_TYPE *data =  new MY_TYPE[buflen];

  int i;
  long consumed;

  sound->startstream();

  sound->recstart();

  cout << "recording...\n";

  sleep(secs);

  sound->recstop();

  consumed = sound->consume(data,buflen);

  cout << consumed << endl;

  for (i=0;i<20;i++)
  {
    sound->append(data,consumed,0);
    
    cout << "playing ... \n";
    
    sleep(secs);
  }

  sound->stopstream();

  delete sound;
  delete[] data;


}