mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Remove all use of nframes_t.
git-svn-id: svn://localhost/ardour2/branches/3.0@8166 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
74b4a3c77b
commit
73192bc1a7
280 changed files with 1615 additions and 1628 deletions
|
|
@ -278,9 +278,9 @@ AnalysisWindow::analyze_data (Gtk::Button */*button*/)
|
|||
|
||||
int n;
|
||||
for (int channel = 0; channel < n_inputs; channel++) {
|
||||
nframes_t x = 0;
|
||||
framecnt_t x = 0;
|
||||
|
||||
while ( x < (*j).length() ) {
|
||||
while (x < j->length()) {
|
||||
// TODO: What about stereo+ channels? composite all to one, I guess
|
||||
|
||||
n = fft_graph.windowSize();
|
||||
|
|
@ -322,11 +322,11 @@ AnalysisWindow::analyze_data (Gtk::Button */*button*/)
|
|||
int n;
|
||||
for (int channel = 0; channel < n_inputs; channel++) {
|
||||
|
||||
nframes_t x = 0;
|
||||
framecnt_t x = 0;
|
||||
|
||||
nframes_t length = arv->region()->length();
|
||||
framecnt_t length = arv->region()->length();
|
||||
|
||||
while ( x < length ) {
|
||||
while (x < length) {
|
||||
// TODO: What about stereo+ channels? composite all to one, I guess
|
||||
|
||||
n = fft_graph.windowSize();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue