示例#1
0
            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);
            }
示例#2
0
            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;
            }
示例#3
0
 public AVStream()
 {
     CodecType = AVCodecType.Unset;
     AudioCodecSubType = AudioStreamTypes.Unset;
 }
示例#4
0
 public AVStream()
 {
     CodecType         = AVCodecType.Unset;
     AudioCodecSubType = AudioStreamTypes.Unset;
 }