Package apple.audiotoolbox.enums
Class AudioFileFlags
- java.lang.Object
-
- apple.audiotoolbox.enums.AudioFileFlags
-
public final class AudioFileFlags extends java.lang.Object[@enum] AudioFileFlags These are flags that can be used with the CreateURL API call [@constant] kAudioFileFlags_EraseFile If set, then the CreateURL call will erase the contents of an existing file If not set, then the CreateURL call will fail if the file already exists [@constant] kAudioFileFlags_DontPageAlignAudioData Normally, newly created and optimized files will have padding added in order to page align the data to 4KB boundaries. This makes reading the data more efficient. When disk space is a concern, this flag can be set so that the padding will not be added.
-
-
Field Summary
Fields Modifier and Type Field Description static intDontPageAlignAudioDatastatic intEraseFile
-
-
-
Field Detail
-
EraseFile
public static final int EraseFile
- See Also:
- Constant Field Values
-
DontPageAlignAudioData
public static final int DontPageAlignAudioData
- See Also:
- Constant Field Values
-
-