~lann/guitartuner/master

« back to all changes in this revision

Viewing changes to src/Variables.h

  • Committer: lannic
  • Date: 2020-08-28 08:35:05 UTC
  • Revision ID: git-v1:23693ca8d21e0ccf5902face3fb73b4df6570441
Portaudio integration

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
     double Note_Below, Note_Sup, Frequency_Peak,precision_ratio,Level_Max; //The same but with the frequencies
62
62
     Gdk::RGBA Color; //The color of the note frame
63
63
} display_parameters;
 
64
//Structures for calculating the FFT
 
65
typedef struct
 
66
{
 
67
     double *RealOut;
 
68
     double *ImagOut;
 
69
}out;
 
70
 
 
71
typedef struct
 
72
{
 
73
     unsigned int num_Samples;
 
74
     out data_out;     
 
75
     double *RealIn;
 
76
     double *ImagIn;
 
77
}s_data;
64
78
class ModelColumns : public Gtk::TreeModel::ColumnRecord    //Class for the combos
65
79
    {
66
80
    public: