[sound-juicer] mb4: don't try to handle ReleaseGroup::comment
- From: Ross Burton <rburton src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [sound-juicer] mb4: don't try to handle ReleaseGroup::comment
- Date: Thu, 19 Jan 2012 10:19:38 +0000 (UTC)
commit b7fd07a650759b867cb3cd9399e66bcc822b4bfb
Author: Christophe Fergeau <cfergeau redhat com>
Date: Tue Aug 2 22:12:30 2011 +0200
mb4: don't try to handle ReleaseGroup::comment
Support for this has been removed from libmusicbrainz4 beta2
libjuicer/sj-metadata-musicbrainz4.c | 5 -----
1 files changed, 0 insertions(+), 5 deletions(-)
---
diff --git a/libjuicer/sj-metadata-musicbrainz4.c b/libjuicer/sj-metadata-musicbrainz4.c
index 4210b50..391e080 100644
--- a/libjuicer/sj-metadata-musicbrainz4.c
+++ b/libjuicer/sj-metadata-musicbrainz4.c
@@ -113,7 +113,6 @@ struct _SjMb4AlbumDetails {
char *country;
char *barcode;
char *type;
- char *comment;
char *format;
char *lyrics_url;
};
@@ -158,7 +157,6 @@ sj_mb4_album_details_free (SjMb4AlbumDetails *details)
g_free (details->country);
g_free (details->barcode);
g_free (details->type);
- g_free (details->comment);
g_free (details->format);
g_free (details->lyrics_url);
g_list_foreach (details->parent.tracks, (GFunc)sj_mb4_track_details_free, NULL);
@@ -186,8 +184,6 @@ sj_mb4_album_details_dump (SjMb4AlbumDetails *details)
g_print ("Barcode: %s\n", details->barcode);
if (details->type)
g_print ("Type: %s\n", details->type);
- if (details->comment)
- g_print ("Comment: %s\n", details->comment);
if (details->format)
g_print ("Format: %s\n", details->format);
if (details->lyrics_url)
@@ -441,7 +437,6 @@ make_album_from_release (Mb4ReleaseGroup group,
GET (mb4_album->barcode, mb4_release_get_barcode, release);
if (group) {
GET (mb4_album->type, mb4_releasegroup_get_type, group);
- GET (mb4_album->comment, mb4_releasegroup_get_comment, group);
if (g_str_has_suffix (mb4_album->type, "Spokenword")
|| g_str_has_suffix (mb4_album->type, "Interview")
|| g_str_has_suffix (mb4_album->type, "Audiobook")) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]