Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. std::cout << "Windowing the audio files!" << std::endl;
  2. std::vector<double>::iterator it;
  3. for (const auto& file: this->list_of_files)
  4. {
  5. file.printSummary();
  6.  
  7. for(it = file.AudioBuffer.begin(); (it+(NUM_SECONDS*SAMPLE_RATE)) !=file.AudioBuffer.end(); ++it )
  8. {
  9. // window = *(it)
  10.  
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement