This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Replaced another call to InputStream::skipNextBytes() with ::setPosition() in CoreAudioFormatMetatdata::read()
tags/2021-05-28
ed
7 years ago
parent
dca741a01d
commit
773ca9a3b3
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_audio_formats/codecs/juce_CoreAudioFormat.cpp
+ 1
- 1
modules/juce_audio_formats/codecs/juce_CoreAudioFormat.cpp
View File
@@ -327,7 +327,7 @@ struct CoreAudioFormatMetatdata
else
{
// we aren't decoding this chunk yet so just skip over it
input.s
kipNextBytes (
chunkHeader.chunkSize);
input.s
etPosition (input.getPosition() +
chunkHeader.chunkSize);
}
}
}
Write
Preview
Loading…
Cancel
Save