/// <summary>
		/// Obtains the file types for which file writing support is provided by the system.
		/// </summary>
		//static public Type[] getAudioFileTypes()
		//{
		//    return default(Type[]);
		//}

		/// <summary>
		/// Obtains the file types that the system can write from the
		/// audio input stream specified.
		/// </summary>
		//static public Type[] getAudioFileTypes(AudioInputStream @stream)
		//{
		//    return default(Type[]);
		//}

		/// <summary>
		/// Obtains an audio input stream of the indicated encoding, by converting the
		/// provided audio input stream.
		/// </summary>
		//static public AudioInputStream getAudioInputStream(AudioFormat.Encoding @targetEncoding, AudioInputStream @sourceStream)
		//{
		//    return default(AudioInputStream);
		//}

		/// <summary>
		/// Obtains an audio input stream of the indicated format, by converting the
		/// provided audio input stream.
		/// </summary>
		static public AudioInputStream getAudioInputStream(AudioFormat @targetFormat, AudioInputStream @sourceStream)
		{
			return default(AudioInputStream);
		}
		/// <summary>
		/// Obtains a line that matches the description in the specified
		/// <code>Line.Info</code> object.
		/// </summary>
		//static public Line getLine(Line.Info @info)
		//{
		//    return default(Line);
		//}

		/// <summary>
		/// Obtains the requested audio mixer.
		/// </summary>
		//static public Mixer getMixer(Mixer.Info @info)
		//{
		//    return default(Mixer);
		//}

		/// <summary>
		/// Obtains an array of mixer info objects that represents
		/// the set of audio mixers that are currently installed on the system.
		/// </summary>
		//static public Info[] getMixerInfo()
		//{
		//    return default(Info[]);
		//}

		/// <summary>
		/// Obtains information about all source lines of a particular type that are supported
		/// by the installed mixers.
		/// </summary>
		//static public Info[] getSourceLineInfo(Line.Info @info)
		//{
		//    return default(Info[]);
		//}

		/// <summary>
		/// Obtains the encodings that the system can obtain from an
		/// audio input stream with the specified encoding using the set
		/// of installed format converters.
		/// </summary>
		//static public Encoding[] getTargetEncodings(AudioFormat.Encoding @sourceEncoding)
		//{
		//    return default(Encoding[]);
		//}

		/// <summary>
		/// Obtains the encodings that the system can obtain from an
		/// audio input stream with the specified format using the set
		/// of installed format converters.
		/// </summary>
		//static public Encoding[] getTargetEncodings(AudioFormat @sourceFormat)
		//{
		//    return default(Encoding[]);
		//}

		/// <summary>
		/// Obtains the formats that have a particular encoding and that the system can
		/// obtain from a stream of the specified format using the set of
		/// installed format converters.
		/// </summary>
		//static public AudioFormat[] getTargetFormats(AudioFormat.Encoding @targetEncoding, AudioFormat @sourceFormat)
		//{
		//    return default(AudioFormat[]);
		//}

		/// <summary>
		/// Obtains information about all target lines of a particular type that are supported
		/// by the installed mixers.
		/// </summary>
		//static public Info[] getTargetLineInfo(Line.Info @info)
		//{
		//    return default(Info[]);
		//}

		/// <summary>
		/// Indicates whether an audio input stream of the specified encoding
		/// can be obtained from an audio input stream that has the specified
		/// format.
		/// </summary>
		//static public bool isConversionSupported(AudioFormat.Encoding @targetEncoding, AudioFormat @sourceFormat)
		//{
		//    return default(bool);
		//}

		/// <summary>
		/// Indicates whether an audio input stream of a specified format
		/// can be obtained from an audio input stream of another specified format.
		/// </summary>
		static public bool isConversionSupported(AudioFormat @targetFormat, AudioFormat @sourceFormat)
		{
			return default(bool);
		}
		/// <summary>
		/// Indicates whether this format matches the one specified.
		/// </summary>
		public bool matches(AudioFormat @format)
		{
			return default(bool);
		}
		/// <summary>
		/// Constructs an audio input stream that has the requested format and length in sample frames,
		/// using audio data from the specified input stream.
		/// </summary>
		public AudioInputStream(InputStream @stream, AudioFormat @format, long @length)
		{
		}
 /// <summary>
 /// Constructs an audio input stream that has the requested format and length in sample frames,
 /// using audio data from the specified input stream.
 /// </summary>
 public AudioInputStream(InputStream @stream, AudioFormat @format, long @length)
 {
 }
Esempio n. 6
0
 /// <summary>
 /// Indicates whether this format matches the one specified.
 /// </summary>
 public bool matches(AudioFormat @format)
 {
     return(default(bool));
 }