comparison src/format_fuji.h @ 51:276ea4c98d33

Sat Jun 4 22:24:00 2005 John Ellis <johne@verizon.net> * exif.[ch]: Use glib provided data types and byte order functions for consistency with rest of application. Made several more functions available in the header. Use MakerNote parsing from format_raw.c. * format_canon.[ch]: Changes to match exif.h and format_raw.h. * format_fuji.[ch]: Add support for Fuji EXIF MakerNote. * format_nikon.[ch]: New files, add support for Nikon EXIF MakerNote. * format_raw.[ch]: Add EXIF MakerNote parser functions to gather all camera formats here (similar to existing raw format list). * src/Makefile.am: Add format_nikon.[ch]. ##### Note: GQview CVS on sourceforge is not always up to date, please use ##### ##### an offical release when making enhancements and translation updates. #####
author gqview
date Sun, 05 Jun 2005 02:48:54 +0000
parents 7cfa60beda76
children 00843150f7c8
comparison
equal deleted inserted replaced
50:3b83fb81afc4 51:276ea4c98d33
8 * This software is released under the GNU General Public License (GNU GPL). 8 * This software is released under the GNU General Public License (GNU GPL).
9 * Please read the included file COPYING for more information. 9 * Please read the included file COPYING for more information.
10 * This software comes with no warranty of any kind, use at your own risk! 10 * This software comes with no warranty of any kind, use at your own risk!
11 */ 11 */
12 12
13 #ifndef __FORMAT_RAW_FUJI_H 13 #ifndef __FORMAT_FUJI_H
14 #define __FORMAT_RAW_FUJI_H 14 #define __FORMAT_FUJI_H
15 15
16 16
17 gint format_raw_test_fuji(const void *data, const guint len, 17 #include "exif.h"
18 guint *image_offset, guint *exif_offset);
19 18
20 19
21 #define FORMAT_RAW_FUJI { "FUJIFILM", 8, "Fuji raw format", format_raw_test_fuji } 20 gint format_fuji_raw(const void *data, const guint len,
21 guint *image_offset, guint *exif_offset);
22
23
24 #define FORMAT_RAW_FUJI { "FUJIFILM", 8, "Fuji raw format", format_fuji_raw }
25
26
27 gint format_fuji_makernote(ExifData *exif, unsigned char *tiff, guint offset,
28 guint size, ExifByteOrder byte_order);
29
30 #define FORMAT_EXIF_FUJI { FORMAT_EXIF_MATCH_MAKERNOTE, "FUJIFILM", 8, format_fuji_makernote }
31
22 32
23 33
24 #endif 34 #endif
25 35