List <AVStream> AVStreamsOfType(AVCodecType ctype) { List <AVStream> output = new List <AVStream>(); foreach (AVStream s in Streams) { if (s.CodecType == ctype) { output.Add(s); } } return(output); }
List<AVStream> AVStreamsOfType(AVCodecType ctype) { List<AVStream> output = new List<AVStream>(); foreach (AVStream s in Streams) { if (s.CodecType == ctype) output.Add(s); } return output; }
public AVStream() { CodecType = AVCodecType.Unset; AudioCodecSubType = AudioStreamTypes.Unset; }