1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Replaced all our internal use of the old AudioSampleBuffer name with AudioBuffer<float> (for which AudioSampleBuffer is just a typedef)

This commit is contained in:
jules 2017-10-30 14:52:47 +00:00
parent 6b45923426
commit aecb819985
67 changed files with 338 additions and 358 deletions

View file

@ -5709,11 +5709,11 @@ static const unsigned char temp_binary_data_28[] =
"}\r\n"
"#endif\r\n"
"\r\n"
"void FILTERCLASSNAME::processBlock (AudioSampleBuffer& buffer, MidiBuffer& midiMessages)\r\n"
"void FILTERCLASSNAME::processBlock (AudioBuffer<float>& buffer, MidiBuffer& midiMessages)\r\n"
"{\r\n"
" ScopedNoDenormals noDenormals;\r\n"
" const int totalNumInputChannels = getTotalNumInputChannels();\r\n"
" const int totalNumOutputChannels = getTotalNumOutputChannels();\r\n"
" auto totalNumInputChannels = getTotalNumInputChannels();\r\n"
" auto totalNumOutputChannels = getTotalNumOutputChannels();\r\n"
"\r\n"
" // In case we have more outputs than inputs, this code clears any output\r\n"
" // channels that didn't contain input data, (because these aren't\r\n"
@ -5803,7 +5803,7 @@ static const unsigned char temp_binary_data_29[] =
" bool isBusesLayoutSupported (const BusesLayout& layouts) const override;\r\n"
" #endif\r\n"
"\r\n"
" void processBlock (AudioSampleBuffer&, MidiBuffer&) override;\r\n"
" void processBlock (AudioBuffer<float>&, MidiBuffer&) override;\r\n"
"\r\n"
" //==============================================================================\r\n"
" AudioProcessorEditor* createEditor() override;\r\n"
@ -7014,8 +7014,8 @@ const char* getNamedResource (const char* resourceNameUTF8, int& numBytes) throw
case 0xafccbd3f: numBytes = 3141; return jucer_AudioComponentTemplate_cpp;
case 0x27c5a93a: numBytes = 1310; return jucer_AudioPluginEditorTemplate_cpp;
case 0x4d0721bf: numBytes = 938; return jucer_AudioPluginEditorTemplate_h;
case 0x51b49ac5: numBytes = 5647; return jucer_AudioPluginFilterTemplate_cpp;
case 0x488afa0a: numBytes = 2245; return jucer_AudioPluginFilterTemplate_h;
case 0x51b49ac5: numBytes = 5638; return jucer_AudioPluginFilterTemplate_cpp;
case 0x488afa0a: numBytes = 2246; return jucer_AudioPluginFilterTemplate_h;
case 0xabad7041: numBytes = 2151; return jucer_ComponentTemplate_cpp;
case 0xfc72fe86: numBytes = 2064; return jucer_ComponentTemplate_h;
case 0x0b66646c: numBytes = 1029; return jucer_ContentCompTemplate_cpp;