TsRemux.TsRemux.PidExists C# (CSharp) Method

PidExists() private method

private PidExists ( ushort pid ) : bool
pid ushort
return bool
        private bool PidExists(ushort pid)
        {
            foreach (StreamInfo si in inFile.StreamInfos)
                if (si.ElementaryPID == pid)
                    return true;
            return false;
        }
TsRemux