Simplify vflist_get_formatted()
[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 "exif-int.h"
26
27
28 typedef enum {
29         FORMAT_RAW_MATCH_MAGIC,
30         FORMAT_RAW_MATCH_TIFF_MAKE
31 } FormatRawMatchType;
32
33 typedef enum {
34         FORMAT_RAW_EXIF_NONE,
35         FORMAT_RAW_EXIF_TIFF,
36         FORMAT_RAW_EXIF_JPEG,
37         FORMAT_RAW_EXIF_IFD_II,
38         FORMAT_RAW_EXIF_IFD_MM,
39         FORMAT_RAW_EXIF_PROPRIETARY
40 } FormatRawExifType;
41
42 typedef gboolean (* FormatRawParseFunc)(guchar *data, const guint len,
43                                         guint *image_offset, guint *exif_offset);
44
45 typedef gboolean (* FormatRawExifParseFunc)(guchar *data, const guint len,
46                                             ExifData *exif);
47
48 gboolean format_raw_img_exif_offsets(guchar *data, const guint len,
49                                      guint *image_offset, guint *exif_offset);
50 gboolean format_raw_img_exif_offsets_fd(gint fd, const gchar *path,
51                                         guchar *header_data, const guint header_len,
52                                         guint *image_offset, guint *exif_offset);
53
54 FormatRawExifType format_raw_exif_offset(guchar *data, const guint len, guint *exif_offset,
55                                          FormatRawExifParseFunc *exif_parse_func);
56
57
58 typedef enum {
59         FORMAT_EXIF_MATCH_MAKE,
60         FORMAT_EXIF_MATCH_MAKERNOTE
61 } FormatExifMatchType;
62
63 typedef gint (* FormatExifParseFunc)(ExifData *exif, guchar *tiff, guint offset,
64                                      guint size, ExifByteOrder bo);
65
66 gboolean format_exif_makernote_parse(ExifData *exif, guchar *tiff, guint offset,
67                                      guint size, ExifByteOrder bo);
68
69
70 #define DEBUG_RAW_TIFF 0
71
72 #if DEBUG_RAW_TIFF
73
74 #define FORMAT_RAW_DEBUG_TIFF { "", \
75                                 FORMAT_RAW_MATCH_MAGIC,     0, "II", 2, \
76                                 FORMAT_RAW_EXIF_NONE, NULL, \
77                                 "Tiff debugger II", format_debug_tiff_raw }, \
78                               { "", \
79                                 FORMAT_RAW_MATCH_MAGIC,     0, "MM", 2, \
80                                 FORMAT_RAW_EXIF_NONE, NULL, \
81                                 "Tiff debugger MM", format_debug_tiff_raw }
82
83 /**
84  * @headerfile format_debug_tiff_raw
85  * used for debugging only
86  */
87 gint format_debug_tiff_raw(guchar *data, const guint len,
88                            guint *image_offset, guint *exif_offset);
89 #endif
90
91 #endif
92 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */