libopenraw
|
00001 /* 00002 * libopenraw - demosaic.h 00003 * 00004 * Copyright (C) 2008 Hubert Figuiere 00005 * 00006 * This library is free software: you can redistribute it and/or 00007 * modify it under the terms of the GNU Lesser General Public License 00008 * as published by the Free Software Foundation, either version 3 of 00009 * the License, or (at your option) any later version. 00010 * 00011 * This library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Lesser General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Lesser General Public 00017 * License along with this library. If not, see 00018 * <http://www.gnu.org/licenses/>. 00019 */ 00020 00021 #ifndef __OPENRAW_DEMOSAIC_H__ 00022 #define __OPENRAW_DEMOSAIC_H__ 00023 00024 #include <stdint.h> 00025 #include <libopenraw/consts.h> 00026 00027 #ifdef __cplusplus 00028 extern "C" { 00029 #endif 00030 00031 #if 0 00032 00033 void 00034 or_demosaic (uint16_t *src, uint32_t src_x, uint32_t src_y, 00035 or_cfa_pattern pattern, uint8_t *dst); 00036 #endif 00037 00038 #ifdef __cplusplus 00039 } 00040 #endif 00041 00042 00043 #endif