summaryrefslogtreecommitdiffstats
path: root/src/db-image-parser.c
blob: 34995dcac817725e81cdcede24738c03db574c89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
 *  Copyright (C) 2005 Christophe Fergeau
 *
 * 
 *  The code contained in this file 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
 *  2.1 of the License, or (at your option) any later version.
 *  
 *  This file 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 code; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 * 
 *  iTunes and iPod are trademarks of Apple
 * 
 *  This product is not supported/written/published by Apple!
 *
 */
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>

#include <glib.h>
#include <glib-object.h>

#include "itdb_device.h"
#include "itdb_endianness.h"
#include "db-artwork-parser.h"
#include "db-image-parser.h"
#include <glib/gi18n-lib.h>

static const Itdb_ArtworkFormat *
find_format (GList *formats, gint16 format_id)
{
        GList *it;

        for (it = formats; it != NULL; it = it->next) {
                const Itdb_ArtworkFormat *format;
                format = (const Itdb_ArtworkFormat *)it->data;
                if (format->format_id == format_id) {
                        return format;
                }
        }

        return NULL;
}

static const Itdb_ArtworkFormat * 
image_format_from_id (Itdb_Device *device, gint16 format_id)
{
        GList *formats;
        const Itdb_ArtworkFormat *format;

	if (device == NULL) {
		return NULL;
	}

	formats = itdb_device_get_cover_art_formats (device);
        format = find_format (formats, format_id);
        g_list_free (formats);
        if (format != NULL) {
                return format;
        }

	formats = itdb_device_get_photo_formats (device);
        format = find_format (formats, format_id);
        g_list_free (formats);
	return format;
}

G_GNUC_INTERNAL Itdb_Thumb_Ipod_Item *
ipod_image_new_from_mhni (MhniHeader *mhni, Itdb_DB *db)
{
	Itdb_Thumb_Ipod_Item *img;
        const Itdb_ArtworkFormat *format;
	gint16 format_id;
	Itdb_Device *device = NULL;

	device = db_get_device (db);
	g_return_val_if_fail (device, NULL);

	format_id = get_gint32_db (db, mhni->format_id);
        format = image_format_from_id (device, format_id);
        if (format == NULL) {
            g_warning (_("Unexpected image type in mhni: %d, offset: %d\n"), 
                       format_id, get_guint32_db (db, mhni->ithmb_offset));
            return NULL;
        }

        img = itdb_thumb_new_item_from_ipod (format);
	if (img == NULL) {
		return NULL;
	}
	img->size   = get_guint32_db (db, mhni->image_size);
	img->offset = get_guint32_db (db, mhni->ithmb_offset);
	img->width  = get_gint16_db (db, mhni->image_width);
	img->height = get_gint16_db (db, mhni->image_height);
	img->horizontal_padding  =
	    get_gint16_db (db, mhni->horizontal_padding);
	img->vertical_padding =
	    get_gint16_db (db, mhni->vertical_padding);

#if DEBUG_ARTWORK
	printf ("format_id: %d, of: %6d sz: %6d, x: %3d, y: %3d, xpad: %3d, ypad: %3d\n",
		format_id, img->offset, img->size, img->width, img->height, img->horizontal_padding, img->vertical_padding);
#endif

	return img;
}