diff options
Diffstat (limited to 'lib/bimedian_demosaic.h')
-rw-r--r-- | lib/bimedian_demosaic.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/bimedian_demosaic.h b/lib/bimedian_demosaic.h new file mode 100644 index 0000000..9ad2e0c --- /dev/null +++ b/lib/bimedian_demosaic.h @@ -0,0 +1,32 @@ +/* + * libopenraw - bimedian_demosaic.h + * + * Copyright 2010 Hubert Figuiere <hub@figuiere.net> + * + * This library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 3 of + * the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see + * <http://www.gnu.org/licenses/>. + * + */ + + + +#ifndef __BIMEDIAN_DEMOSAIC_H_ +#define __BIMEDIAN_DEMOSAIC_H_ + + +void +bimedian_demosaic (uint16_t *src, uint32_t src_x, uint32_t src_y, + or_cfa_pattern pattern, uint8_t *dst, uint32_t &out_x, uint32_t &out_y); + +#endif |