| 130 | } |
| 131 | |
| 132 | struct ComponentParameter** getOutputFormatParameters(const char* id) |
| 133 | { |
| 134 | const OutputFormat* format = OutputFormat::get(id); |
| 135 | if (format) |
| 136 | return makeComponentParameterList(format->getParameters()); |
| 137 | return NULL; |
| 138 | } |
| 139 | |
| 140 | |
| 141 | void freeComponentParameters(struct ComponentParameter** params) |
nothing calls this directly
no test coverage detected