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:
Carl Hetherington 2010-12-03 22:26:29 +00:00
parent 74b4a3c77b
commit 73192bc1a7
280 changed files with 1615 additions and 1628 deletions

View file

@ -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();