2006-12-12 James Livingston <doclivingston@gmail.com>
[rhythmbox.git] / metadata / sj-structures.c
blob331c08af8a132505242a3bede4ad017fbe9bf6f8
1 /*
2 * Copyright (C) 2003 Ross Burton <ross@burtonini.com>
4 * Sound Juicer - sj-structures.c
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 * Authors: Ross Burton <ross@burtonini.com>
23 #include "sj-structures.h"
24 #include <glib/gmessages.h>
25 #include <glib/glist.h>
27 /**
28 * Free a TrackDetails*
30 void track_details_free(TrackDetails *track)
32 g_return_if_fail (track != NULL);
33 g_free (track->title);
34 g_free (track->artist);
35 g_free (track->track_id);
36 g_free (track->artist_id);
37 g_free (track->artist_sortname);
38 g_free (track);
41 /**
42 * Free a AlbumDetails*
44 void album_details_free(AlbumDetails *album)
46 g_return_if_fail (album != NULL);
47 g_free (album->title);
48 g_free (album->artist);
49 g_free (album->genre);
50 g_free (album->album_id);
51 if (album->release_date) g_date_free (album->release_date);
52 g_list_foreach (album->tracks, (GFunc)track_details_free, NULL);
53 g_list_free (album->tracks);
54 g_free (album->artist_sortname);
55 g_free (album);