Class AudioStream

java.lang.Object
com.raylib.jextract.AudioStream

public class AudioStream extends Object
struct AudioStream {
    rAudioBuffer *buffer;
    rAudioProcessor *processor;
    unsigned int sampleRate;
    unsigned int sampleSize;
    unsigned int channels;
}
  • Method Details

    • layout

      public static final GroupLayout layout()
      The layout of this struct
    • buffer$layout

      public static final AddressLayout buffer$layout()
      Layout for field:
      rAudioBuffer *buffer
      
    • buffer$offset

      public static final long buffer$offset()
      Offset for field:
      rAudioBuffer *buffer
      
    • buffer

      public static MemorySegment buffer(MemorySegment struct)
      Getter for field:
      rAudioBuffer *buffer
      
    • buffer

      public static void buffer(MemorySegment struct, MemorySegment fieldValue)
      Setter for field:
      rAudioBuffer *buffer
      
    • processor$layout

      public static final AddressLayout processor$layout()
      Layout for field:
      rAudioProcessor *processor
      
    • processor$offset

      public static final long processor$offset()
      Offset for field:
      rAudioProcessor *processor
      
    • processor

      public static MemorySegment processor(MemorySegment struct)
      Getter for field:
      rAudioProcessor *processor
      
    • processor

      public static void processor(MemorySegment struct, MemorySegment fieldValue)
      Setter for field:
      rAudioProcessor *processor
      
    • sampleRate$layout

      public static final ValueLayout.OfInt sampleRate$layout()
      Layout for field:
      unsigned int sampleRate
      
    • sampleRate$offset

      public static final long sampleRate$offset()
      Offset for field:
      unsigned int sampleRate
      
    • sampleRate

      public static int sampleRate(MemorySegment struct)
      Getter for field:
      unsigned int sampleRate
      
    • sampleRate

      public static void sampleRate(MemorySegment struct, int fieldValue)
      Setter for field:
      unsigned int sampleRate
      
    • sampleSize$layout

      public static final ValueLayout.OfInt sampleSize$layout()
      Layout for field:
      unsigned int sampleSize
      
    • sampleSize$offset

      public static final long sampleSize$offset()
      Offset for field:
      unsigned int sampleSize
      
    • sampleSize

      public static int sampleSize(MemorySegment struct)
      Getter for field:
      unsigned int sampleSize
      
    • sampleSize

      public static void sampleSize(MemorySegment struct, int fieldValue)
      Setter for field:
      unsigned int sampleSize
      
    • channels$layout

      public static final ValueLayout.OfInt channels$layout()
      Layout for field:
      unsigned int channels
      
    • channels$offset

      public static final long channels$offset()
      Offset for field:
      unsigned int channels
      
    • channels

      public static int channels(MemorySegment struct)
      Getter for field:
      unsigned int channels
      
    • channels

      public static void channels(MemorySegment struct, int fieldValue)
      Setter for field:
      unsigned int channels
      
    • asSlice

      public static MemorySegment asSlice(MemorySegment array, long index)
      Obtains a slice of arrayParam which selects the array element at index. The returned segment has address arrayParam.address() + index * layout().byteSize()
    • sizeof

      public static long sizeof()
      The size (in bytes) of this struct
    • allocate

      public static MemorySegment allocate(SegmentAllocator allocator)
      Allocate a segment of size layout().byteSize() using allocator
    • allocateArray

      public static MemorySegment allocateArray(long elementCount, SegmentAllocator allocator)
      Allocate an array of size elementCount using allocator. The returned segment has size elementCount * layout().byteSize().
    • reinterpret

      public static MemorySegment reinterpret(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup)
      Reinterprets addr using target arena and cleanupAction (if any). The returned segment has size layout().byteSize()
    • reinterpret

      public static MemorySegment reinterpret(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup)
      Reinterprets addr using target arena and cleanupAction (if any). The returned segment has size elementCount * layout().byteSize()