File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
EXILED/Exiled.API/Features/Audio Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ namespace Exiled.API.Features.Audio
1414 using VoiceChat ;
1515
1616 /// <summary>
17- /// Provides utility methods for working with WAV audio files, such as converting to PCM data and validating headers .
17+ /// Provides utility methods for working with WAV audio files.
1818 /// </summary>
1919 public static class WavUtility
2020 {
@@ -49,9 +49,6 @@ public static float[] WavToPcm(string path)
4949 /// Skips the WAV file header and validates that the format is PCM16 mono with the specified sample rate.
5050 /// </summary>
5151 /// <param name="br">The <see cref="BinaryReader"/> to read from.</param>
52- /// <exception cref="InvalidDataException">
53- /// Thrown if the WAV file is not PCM16, mono, or does not match the expected sample rate.
54- /// </exception>
5552 public static void SkipHeader ( BinaryReader br )
5653 {
5754 br . ReadBytes ( 12 ) ;
You can’t perform that action at this time.
0 commit comments