Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

juce_MemoryAudioSource.cpp 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2020 - Raw Material Software Limited
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. The code included in this file is provided under the terms of the ISC license
  8. http://www.isc.org/downloads/software-support-policy/isc-license. Permission
  9. To use, copy, modify, and/or distribute this software for any purpose with or
  10. without fee is hereby granted provided that the above copyright notice and
  11. this permission notice appear in all copies.
  12. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  13. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  14. DISCLAIMED.
  15. ==============================================================================
  16. */
  17. namespace juce
  18. {
  19. MemoryAudioSource::MemoryAudioSource (AudioBuffer<float>& bufferToUse, bool copyMemory, bool shouldLoop)
  20. : isCurrentlyLooping (shouldLoop)
  21. {
  22. if (copyMemory)
  23. buffer.makeCopyOf (bufferToUse);
  24. else
  25. buffer.setDataToReferTo (bufferToUse.getArrayOfWritePointers(),
  26. bufferToUse.getNumChannels(),
  27. bufferToUse.getNumSamples());
  28. }
  29. //==============================================================================
  30. void MemoryAudioSource::prepareToPlay (int /*samplesPerBlockExpected*/, double /*sampleRate*/)
  31. {
  32. position = 0;
  33. }
  34. void MemoryAudioSource::releaseResources() {}
  35. void MemoryAudioSource::getNextAudioBlock (const AudioSourceChannelInfo& bufferToFill)
  36. {
  37. auto& dst = *bufferToFill.buffer;
  38. auto channels = jmin (dst.getNumChannels(), buffer.getNumChannels());
  39. auto max = 0, pos = 0;
  40. auto n = buffer.getNumSamples(), m = bufferToFill.numSamples;
  41. int i;
  42. for (i = position; (i < n || isCurrentlyLooping) && (pos < m); i += max)
  43. {
  44. max = jmin (m - pos, n - (i % n));
  45. int ch = 0;
  46. for (; ch < channels; ++ch)
  47. dst.copyFrom (ch, bufferToFill.startSample + pos, buffer, ch, i % n, max);
  48. for (; ch < dst.getNumChannels(); ++ch)
  49. dst.clear (ch, bufferToFill.startSample + pos, max);
  50. pos += max;
  51. }
  52. if (pos < m)
  53. dst.clear (bufferToFill.startSample + pos, m - pos);
  54. position = (i % n);
  55. }
  56. //==============================================================================
  57. void MemoryAudioSource::setNextReadPosition (int64 newPosition)
  58. {
  59. position = (int) newPosition;
  60. }
  61. int64 MemoryAudioSource::getNextReadPosition() const
  62. {
  63. return position;
  64. }
  65. int64 MemoryAudioSource::getTotalLength() const
  66. {
  67. return buffer.getNumSamples();
  68. }
  69. //==============================================================================
  70. bool MemoryAudioSource::isLooping() const
  71. {
  72. return isCurrentlyLooping;
  73. }
  74. void MemoryAudioSource::setLooping (bool shouldLoop)
  75. {
  76. isCurrentlyLooping = shouldLoop;
  77. }
  78. } // namespace juce