File indexing completed on 2025-01-05 03:57:06

0001 /* -*- C++ -*-
0002  * Copyright 2019-2021 LibRaw LLC (info@libraw.org)
0003  *
0004  Placeholder functions to build LibRaw w/o postprocessing tools
0005  
0006  LibRaw is free software; you can redistribute it and/or modify
0007  it under the terms of the one of two licenses as you choose:
0008 
0009 1. GNU LESSER GENERAL PUBLIC LICENSE version 2.1
0010    (See file LICENSE.LGPL provided in LibRaw distribution archive for details).
0011 
0012 2. COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
0013    (See file LICENSE.CDDL provided in LibRaw distribution archive for details).
0014 
0015  */
0016 
0017 #include "../../internal/libraw_cxx_defs.h"
0018 
0019 int LibRaw::dcraw_process(void)
0020 {
0021   return LIBRAW_NOT_IMPLEMENTED;
0022 }
0023 
0024 void LibRaw::fuji_rotate() {}
0025 void LibRaw::convert_to_rgb_loop(float /*out_cam*/ [3][4]) {}
0026 libraw_processed_image_t *LibRaw::dcraw_make_mem_image(int *) {
0027   return NULL;
0028 }
0029 libraw_processed_image_t *LibRaw::dcraw_make_mem_thumb(int *){ return NULL;}
0030 void LibRaw::lin_interpolate_loop(int * /*code*/, int /*size*/) {}
0031 void LibRaw::scale_colors_loop(float /*scale_mul*/[4]) {}