summaryrefslogtreecommitdiffstats
path: root/src/db-artwork-writer.c
diff options
context:
space:
mode:
authorJorg Schuler <jcsjcs@users.sourceforge.net>2006-10-29 08:43:28 +0000
committerJorg Schuler <jcsjcs@users.sourceforge.net>2006-10-29 08:43:28 +0000
commitcb0393e876d66ae4f16efbd84844246f96f12bd9 (patch)
tree1a7a2a4aac1a5fd450f57fa3da44d6200bb58594 /src/db-artwork-writer.c
parentc6a0ced66299f158aca59bc33b7966de04ed615b (diff)
downloadlibgpod-tmz-cb0393e876d66ae4f16efbd84844246f96f12bd9.tar.gz
libgpod-tmz-cb0393e876d66ae4f16efbd84844246f96f12bd9.tar.xz
libgpod-tmz-cb0393e876d66ae4f16efbd84844246f96f12bd9.zip
Major rework of picture support.
* src/db-artwork-parser.c, src/db-artwork-writer.c, src/itdb.h, src/db-itunes-parser.h: renamed 'master' to 'album_type' in MhbaHeader and Itdb_PhotoAlbum. * src/db-artwork-parser.c, src/db-artwork-writer.c, src/itdb_photoalbum.c: Itdb_Photoalbum->members are now pointers to the corresponding Itdb_Artwork instead of image_ids. * src/itdb_photoalbum.c: album_ids and image_ids are set just before writing the PhotoDB in itdb_photodb_write(). * src/itdb_photoalbum.c: new interface, basically use as follows: itdb_photodb_parse(): Read an existing PhotoDB. itdb_photodb_create(): Create a new Itdb_PhotoDB structure. The Photo Library Album is (first album) is created automatically. itdb_photodb_add_photo(), itdb_photodb_add_photo_from_data(): Add a photo to the PhotoDB (from file or from a chunk of memory). It is automatically added to the Photo Library Album (first album), which is created if it does not exist already. itdb_photodb_photoalbum_craete(): Create and add a new photoalbum. itdb_photodb_photoalbum_add_photo(): Add a photo (Itdb_Artwork) to an existing photoalbum. itdb_photodb_photoalbum_remove(): Remove an existing photoalbum. Pictures can be kept in the Photo Library or automatically removed as well. itdb_photodb_remove_photo(): Remove a photo either from a photoalbum or completely from the database. itdb_photodb_write(): Write out your PhotoDB. itdb_photodb_free(): Free all memory taken by the PhotoDB. itdb_photodb_photoalbum_by_name(): Find the first photoalbum with a given name. * src/itdb_playlist.c (itdb_playlist_add, itdb_playlist_add_track): src/itdb_track.c (itdb_track_add): simplify code by using g_list_insert(). * tests/test-photos.c: change to new interface, add new commands 'list' to list photo IDs in the database, 'remove' to remove IDs from an album or the iPod, or remove entire photoalbums from the iPod. * src/db-itunes-parser.h: added comments to _MhbaHeader definition. git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1329 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'src/db-artwork-writer.c')
-rw-r--r--src/db-artwork-writer.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/db-artwork-writer.c b/src/db-artwork-writer.c
index f072059..80ab33f 100644
--- a/src/db-artwork-writer.c
+++ b/src/db-artwork-writer.c
@@ -685,7 +685,7 @@ write_mhba (Itdb_PhotoAlbum *photo_album, iPodBuffer *buffer)
}
mhba->num_mhods = get_gint32(1, buffer->byte_order);
mhba->playlist_id = get_gint32(photo_album->album_id, buffer->byte_order);
- mhba->master = get_gint32(photo_album->master, buffer->byte_order);
+ mhba->album_type = get_gint32(photo_album->album_type, buffer->byte_order);
mhba->prev_playlist_id = get_gint32(photo_album->prev_album_id, buffer->byte_order);
mhba->num_mhias = get_gint32(photo_album->num_images, buffer->byte_order);
total_bytes = get_gint32 (mhba->header_len, buffer->byte_order);
@@ -704,13 +704,14 @@ write_mhba (Itdb_PhotoAlbum *photo_album, iPodBuffer *buffer)
total_bytes += bytes_written;
for (it = photo_album->members; it != NULL; it = it->next) {
- gint image_id = GPOINTER_TO_INT(it->data);
+ Itdb_Artwork *photo = it->data;
+ g_return_val_if_fail (photo, -1);
sub_buffer = ipod_buffer_get_sub_buffer (buffer, total_bytes);
if (sub_buffer == NULL) {
return -1;
}
- bytes_written = write_mhia (image_id, sub_buffer);
+ bytes_written = write_mhia (photo->id, sub_buffer);
ipod_buffer_destroy (sub_buffer);
if (bytes_written == -1) {
return -1;