File: record.hh

package info (click to toggle)
performous 0.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 6,748 kB
  • ctags: 2,894
  • sloc: cpp: 14,729; sh: 275; objc: 245; makefile: 102; xml: 14
file content (45 lines) | stat: -rw-r--r-- 1,461 bytes parent folder | download
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
#pragma once

#include <libda/audio.hpp>
#include "pitch.hh"
#include <boost/ptr_container/ptr_vector.hpp>
#include <vector>
#include <iostream>

/// class for recording sound from mics
class Capture {
  private:
	class Device {
	  private:
		std::vector<Analyzer*> m_channels;
		da::settings m_settings;
		da::record m_record;
	  public:
		Device(Capture& c, std::size_t channels, std::size_t rate, std::size_t frames, std::string device):
		  m_channels(channels),
		  m_settings(device),
		  m_record(m_settings.set_callback(boost::ref(*this)).set_channels(channels).set_rate(rate).set_frames(frames).set_debug(std::cerr))
		{
			for(std::size_t ch = 0; ch < channels; ++ch) {
				if (c.m_analyzers.size() < 4) c.m_analyzers.push_back(m_channels[ch] = new Analyzer(m_settings.rate()));
			}
		}
		bool operator()(da::pcm_data& areas) {
			for(std::size_t ch = 0; ch < m_channels.size(); ++ch) {
				if (m_channels[ch]) m_channels[ch]->input(areas.begin(ch), areas.end(ch));
			}
			return true;
		}
	}; // Device
	boost::ptr_vector<Analyzer> m_analyzers;  // This must come before the devices for correct destruction order
	boost::ptr_vector<Device> m_devices;

  public:
	/// add new microphones
	void addMics(std::size_t channels, std::size_t rate, std::size_t frames, std::string device){
		m_devices.push_back(new Device(*this, channels, rate, frames, device));
	}
	/// get analyzers
	boost::ptr_vector<Analyzer>& analyzers() { return m_analyzers; }
};