| 306 | ip->free_image(); |
| 307 | } |
| 308 | int libraw_get_decoder_info(libraw_data_t *lr, libraw_decoder_info_t *d) |
| 309 | { |
| 310 | if (!lr || !d) |
| 311 | return EINVAL; |
| 312 | LibRaw *ip = (LibRaw *)lr->parent_class; |
| 313 | return ip->get_decoder_info(d); |
| 314 | } |
| 315 | int libraw_COLOR(libraw_data_t *lr, int row, int col) |
| 316 | { |
| 317 | if (!lr) |
nothing calls this directly
no test coverage detected