1 /* -*- C++ -*-
2  * Copyright 2019-2020 LibRaw LLC (info@libraw.org)
3  *
4  Placehoder functions to build LibRaw w/o postprocessing tools
5 
6  LibRaw is free software; you can redistribute it and/or modify
7  it under the terms of the one of two licenses as you choose:
8 
9 1. GNU LESSER GENERAL PUBLIC LICENSE version 2.1
10    (See file LICENSE.LGPL provided in LibRaw distribution archive for details).
11 
12 2. COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
13    (See file LICENSE.CDDL provided in LibRaw distribution archive for details).
14 
15  */
16 
17 #include "../../internal/libraw_cxx_defs.h"
18 
dcraw_process(void)19 int LibRaw::dcraw_process(void)
20 {
21   return LIBRAW_NOT_IMPLEMENTED;
22 }
23 
fuji_rotate()24 void LibRaw::fuji_rotate() {}
convert_to_rgb_loop(float out_cam[3][4])25 void LibRaw::convert_to_rgb_loop(float out_cam[3][4]) {}
dcraw_make_mem_image(int *)26 libraw_processed_image_t *LibRaw::dcraw_make_mem_image(int *) {
27   return NULL;
28 }
dcraw_make_mem_thumb(int *)29 libraw_processed_image_t *LibRaw::dcraw_make_mem_thumb(int *){ return NULL;}
lin_interpolate_loop(int * code,int size)30 void LibRaw::lin_interpolate_loop(int *code, int size) {}
scale_colors_loop(float scale_mul[4])31 void LibRaw::scale_colors_loop(float scale_mul[4]) {}
32