Aditional remote command - window list
[geeqie.git] / src / format-raw.h
1 /*
2  * Copyright (C) 2005 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: Lars Ellenberg
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #ifndef __FORMAT_RAW_H
23 #define __FORMAT_RAW_H
24
25 #include <glib.h>
26
27 #include "exif-int.h"
28
29
30 enum FormatRawMatchType {
31         FORMAT_RAW_MATCH_MAGIC,
32         FORMAT_RAW_MATCH_TIFF_MAKE
33 };
34
35 enum FormatRawExifType {
36         FORMAT_RAW_EXIF_NONE,
37         FORMAT_RAW_EXIF_TIFF,
38         FORMAT_RAW_EXIF_JPEG,
39         FORMAT_RAW_EXIF_IFD_II,
40         FORMAT_RAW_EXIF_IFD_MM,
41         FORMAT_RAW_EXIF_PROPRIETARY
42 };
43
44 using FormatRawParseFunc = gboolean (*)(guchar *, const guint, guint *, guint *);
45 using FormatRawExifParseFunc = gboolean (*)(guchar *, const guint, ExifData *);
46
47 gboolean format_raw_img_exif_offsets(guchar *data, guint len,
48                                      guint *image_offset, guint *exif_offset);
49 gboolean format_raw_img_exif_offsets_fd(gint fd, const gchar *path,
50                                         guchar *header_data, guint header_len,
51                                         guint *image_offset, guint *exif_offset);
52
53 FormatRawExifType format_raw_exif_offset(guchar *data, guint len, guint *exif_offset,
54                                          FormatRawExifParseFunc *exif_parse_func);
55
56
57 enum FormatExifMatchType {
58         FORMAT_EXIF_MATCH_MAKE,
59         FORMAT_EXIF_MATCH_MAKERNOTE
60 };
61
62 using FormatExifParseFunc = gint (*)(ExifData *, guchar *, guint, guint, ExifByteOrder);
63
64 gboolean format_exif_makernote_parse(ExifData *exif, guchar *tiff, guint offset,
65                                      guint size, ExifByteOrder bo);
66
67
68 #define DEBUG_RAW_TIFF 0
69
70 #if DEBUG_RAW_TIFF
71
72 #define FORMAT_RAW_DEBUG_TIFF { "", \
73                                 FORMAT_RAW_MATCH_MAGIC,     0, "II", 2, \
74                                 FORMAT_RAW_EXIF_NONE, NULL, \
75                                 "Tiff debugger II", format_debug_tiff_raw }, \
76                               { "", \
77                                 FORMAT_RAW_MATCH_MAGIC,     0, "MM", 2, \
78                                 FORMAT_RAW_EXIF_NONE, NULL, \
79                                 "Tiff debugger MM", format_debug_tiff_raw }
80
81 /**
82  * @headerfile format_debug_tiff_raw
83  * used for debugging only
84  */
85 gint format_debug_tiff_raw(guchar *data, const guint len,
86                            guint *image_offset, guint *exif_offset);
87 #endif
88
89 #endif
90 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */