Export now happens directly to file (unless normalizing is required), and can be easily optimized even further. The Session process connection is still broken during export (as it was before this commit also). git-svn-id: svn://localhost/ardour2/branches/3.0@6401 d708f5d6-7413-0410-9779-e7cbd77b26cf
8 lines
255 B
C++
8 lines
255 B
C++
#include "audiographer/routines.h"
|
|
|
|
namespace AudioGrapher
|
|
{
|
|
Routines::compute_peak_t Routines::_compute_peak = &Routines::default_compute_peak;
|
|
Routines::apply_gain_to_buffer_t Routines::_apply_gain_to_buffer = &Routines::default_apply_gain_to_buffer;
|
|
}
|