[tracker: 4/12] tracker-extract: Add code comments about handling album art
- From: Philip Van Hoof <pvanhoof src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker: 4/12] tracker-extract: Add code comments about handling album art
- Date: Fri, 19 Aug 2011 14:08:53 +0000 (UTC)
commit 857bafcd6e0913ffc8661b288ae70de9447f1f8a
Author: Philip Van Hoof <philip codeminded be>
Date: Wed Aug 17 18:11:44 2011 +0200
tracker-extract: Add code comments about handling album art
src/tracker-extract/tracker-albumart.c | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
---
diff --git a/src/tracker-extract/tracker-albumart.c b/src/tracker-extract/tracker-albumart.c
index 1a9fd88..5b242b3 100644
--- a/src/tracker-extract/tracker-albumart.c
+++ b/src/tracker-extract/tracker-albumart.c
@@ -478,6 +478,9 @@ albumart_set (const unsigned char *buffer,
if (!g_file_test (album_path, G_FILE_TEST_EXISTS)) {
retval = tracker_albumart_buffer_to_jpeg (buffer, len, mime, album_path);
+ /* If album-space-md5.jpg doesn't exist, make one and make a symlink
+ * to album-md5-md5.jpg */
+
if (retval && symlink(album_path, local_path) != 0) {
perror ("symlink() error");
retval = FALSE;
@@ -494,6 +497,9 @@ albumart_set (const unsigned char *buffer,
sum1 = checksum_for_data (G_CHECKSUM_MD5, buffer, len);
sum2 = checksum_for_data (G_CHECKSUM_MD5, contents, len2);
+ /* If album-space-md5.jpg is the same as buffer, make a symlink
+ * to album-md5-md5.jpg */
+
if (g_strcmp0 (sum1, sum2) == 0) {
if (symlink (album_path, local_path) != 0) {
perror ("symlink() error");
@@ -502,6 +508,8 @@ albumart_set (const unsigned char *buffer,
retval = TRUE;
}
} else {
+ /* If album-space-md5.jpg isn't the same as buffer, make a
+ * new album-md5-md5.jpg */
retval = tracker_albumart_buffer_to_jpeg (buffer, len, mime, local_path);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]