logplot_tests.cpp 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Copyright (C) 2018 The Android Open Source Project
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include <iostream>
  17. #include <vector>
  18. #include <audio_utils/LogPlot.h>
  19. // TODO Make more rigorous unit tests.
  20. int main()
  21. {
  22. static const float data[] = {-61.4, -61.7, -56.2, -54.5, -47.7, -51.1, -49.7, -47.2,
  23. -47.8, -42.3, -38.9, -40.5, -39.4, -33.9, -26.3, -20.9};
  24. size_t data_size = sizeof(data) / sizeof(*data);
  25. std::vector<std::pair<float, bool>> vdata;
  26. for (size_t i = 0; i < data_size; i++) {
  27. vdata.emplace_back(data[i], (i + 1) % 10 == 0);
  28. }
  29. std::string graphstr = audio_utils_log_plot(vdata.begin(), vdata.end());
  30. std::cout << graphstr << std::endl;
  31. return EXIT_SUCCESS;
  32. }