summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/export_utilities.h
blob: 1da79a8d398d1f656819865ebb53feeef8990cdc (plain)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*
    Copyright (C) 2008 Paul Davis
    Author: Sakari Bergen

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

*/

#ifndef __ardour_export_utilities_h__
#define __ardour_export_utilities_h__

#include <samplerate.h>

#include "ardour/graph.h"
#include "ardour/types.h"
#include "ardour/ardour.h"
#include "ardour/export_format_base.h"
#include "ardour/runtime_functions.h"

namespace ARDOUR
{

/* Processors */

/* Sample rate converter */

class SampleRateConverter : public GraphSinkVertex<float, float>
{
  public:
	SampleRateConverter (uint32_t channels, nframes_t in_rate, nframes_t out_rate, int quality);
	~SampleRateConverter ();

  protected:
	nframes_t process (float * data, nframes_t frames);
	
  private:
	bool           active;
	uint32_t       channels;
	
	nframes_t      leftover_frames;
	nframes_t      max_leftover_frames;
	nframes_t      frames_in;
	nframes_t      frames_out;
	
	float *        data_in;
	float *        leftover_data;
	
	float *        data_out;
	nframes_t      data_out_size;
	
	SRC_DATA       src_data;
	SRC_STATE*     src_state;
};

/* Sample format converter */

template <typename TOut>
class SampleFormatConverter : public GraphSinkVertex<float, TOut>
{
  public:
	SampleFormatConverter (uint32_t channels, ExportFormatBase::DitherType type = ExportFormatBase::D_None, int data_width_ = 0);
	~SampleFormatConverter ();
	
	void set_clip_floats (bool yn) { clip_floats = yn; }
	
  protected:
	nframes_t process (float * data, nframes_t frames);
	
  private:
	uint32_t     channels;
	int          data_width;
	GDither      dither;
	nframes_t    data_out_size;
	TOut *       data_out;
	
	bool         clip_floats;
	
};

/* Peak reader */

class PeakReader : public GraphSinkVertex<float, float>
{
  public:
	PeakReader (uint32_t channels) : channels (channels), peak (0) {}
	~PeakReader () {}
	
	float get_peak () { return peak; }
	
  protected:
	nframes_t process (float * data, nframes_t frames)
	{
		peak = compute_peak (data, channels * frames, peak);
		return piped_to->write (data, frames);
	}
	
  private:
	uint32_t    channels;
	float       peak;
};

/* Normalizer */

class Normalizer : public GraphSinkVertex<float, float>
{
  public:
	Normalizer (uint32_t channels, float target_dB);
	~Normalizer ();
	
	void set_peak (float peak);
	
  protected:
	nframes_t process (float * data, nframes_t frames);
	
  private:
	uint32_t    channels;
	
	bool        enabled;
	gain_t      target;
	gain_t      gain;
};

/* Other */

class NullSink : public GraphSink<float>
{
  public:
	nframes_t write (float * data, nframes_t frames) { return frames; }
};


} // namespace ARDOUR

#endif /* __ardour_export_utilities_h__ */