| 122 | } |
| 123 | |
| 124 | struct ComponentParameter** getComponentParameters(const char* id) |
| 125 | { |
| 126 | const Component* proto = ComponentFactory::instance()->getPrototype(id); |
| 127 | if (proto) |
| 128 | return makeComponentParameterList(proto->getParameterDescriptorList()); |
| 129 | return NULL; |
| 130 | } |
| 131 | |
| 132 | struct ComponentParameter** getOutputFormatParameters(const char* id) |
| 133 | { |
nothing calls this directly
no test coverage detected