Mercurial > geeqie
annotate src/format_olympus.h @ 131:b1acdfc7271b
relative scroll is working; some cleanup
author | nadvornik |
---|---|
date | Thu, 12 Jul 2007 20:46:28 +0000 |
parents | 847e4bc6b54c |
children | 695e1ad3b169 |
rev | line source |
---|---|
57 | 1 /* |
2 * GQView | |
3 * (C) 2005 John Ellis | |
4 * | |
5 * This software is released under the GNU General Public License (GNU GPL). | |
6 * Please read the included file COPYING for more information. | |
7 * This software comes with no warranty of any kind, use at your own risk! | |
8 */ | |
9 | |
10 #ifndef __FORMAT_OLYMPUS_H | |
11 #define __FORMAT_OLYMPUS_H | |
12 | |
13 | |
14 #include "exif.h" | |
15 | |
16 | |
17 gint format_olympus_raw(unsigned char *data, const guint len, | |
18 guint *image_offset, guint *exif_offset); | |
19 | |
20 | |
21 #define FORMAT_RAW_OLYMPUS { "orf", \ | |
101
847e4bc6b54c
Tue Nov 7 15:35:59 2006 John Ellis <johne@verizon.net>
gqview
parents:
57
diff
changeset
|
22 FORMAT_RAW_MATCH_MAGIC, 0, "IIR", 3, \ |
847e4bc6b54c
Tue Nov 7 15:35:59 2006 John Ellis <johne@verizon.net>
gqview
parents:
57
diff
changeset
|
23 FORMAT_RAW_EXIF_IFD_II, NULL, \ |
57 | 24 "Olympus raw", format_olympus_raw } |
25 | |
26 | |
27 gint format_olympus_makernote(ExifData *exif, unsigned char *tiff, guint offset, | |
28 guint size, ExifByteOrder bo); | |
29 | |
30 #define FORMAT_EXIF_OLYMPUS { FORMAT_EXIF_MATCH_MAKERNOTE, "OLYMP\x00\x01", 7, \ | |
31 "Olympus", format_olympus_makernote }, \ | |
32 { FORMAT_EXIF_MATCH_MAKERNOTE, "OLYMP\x00\x02", 7, \ | |
33 "Olympus", format_olympus_makernote } | |
34 | |
35 | |
36 #endif | |
37 |