Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
umireon committed Jul 22, 2024
1 parent 58721c9 commit 6e262b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion FragmentedRecordWriterTests/DummyAudioGenerator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ class DummyAudioGenerator {
if bytesPerSample == 1 {
formatFlags = kAudioFormatFlagIsPacked
} else if bytesPerSample == 2 {
formatFlags = kAudioFormatFlagIsSignedInteger | (isSwapped ? kAudioFormatFlagIsBigEndian : 0) | kAudioFormatFlagIsPacked
formatFlags =
kAudioFormatFlagIsSignedInteger | (isSwapped ? kAudioFormatFlagIsBigEndian : 0)
| kAudioFormatFlagIsPacked
} else {
throw DummyAudioGeneratorError.initializingParameterNotSupported(
numChannels: numChannels,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#pragma once

#include <math.h>
#include <stdint.h>
#include <stdbool.h>
#include <stdint.h>

#import "../FragmentedRecordWriter/FragmentedRecordWriter-Bridging-Header.h"

Expand Down

0 comments on commit 6e262b9

Please sign in to comment.