| 125 | #endif |
| 126 | #endif |
| 127 | int libraw_open_buffer(libraw_data_t *lr, const void *buffer, size_t size) |
| 128 | { |
| 129 | if (!lr) |
| 130 | return EINVAL; |
| 131 | LibRaw *ip = (LibRaw *)lr->parent_class; |
| 132 | return ip->open_buffer(buffer, size); |
| 133 | } |
| 134 | int libraw_open_bayer(libraw_data_t *lr, unsigned char *data, |
| 135 | unsigned datalen, ushort _raw_width, ushort _raw_height, |
| 136 | ushort _left_margin, ushort _top_margin, |
nothing calls this directly
no test coverage detected