Class AVAudioConverterOutputStatus


  • public final class AVAudioConverterOutputStatus
    extends java.lang.Object
    [@enum] AVAudioConverterOutputStatus These values are returned from convertToBuffer:error:withInputFromBlock:
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long EndOfStream
      The end of stream has been reached.
      static long Error
      An error occurred.
      static long HaveData
      All of the requested data was returned.
      static long InputRanDry
      Not enough input was available to satisfy the request at the current time.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • HaveData

        public static final long HaveData
        All of the requested data was returned.
        See Also:
        Constant Field Values
      • InputRanDry

        public static final long InputRanDry
        Not enough input was available to satisfy the request at the current time. The output buffer contains as much as could be converted.
        See Also:
        Constant Field Values
      • EndOfStream

        public static final long EndOfStream
        The end of stream has been reached. No data was returned.
        See Also:
        Constant Field Values