changeset 1700:42ea52049c76

Fix MusePack plugin for the new API.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 11 Sep 2007 02:14:11 +0300
parents 11135fc0e183
children c4e63a2d85aa
files src/musepack/libmpc.cxx
diffstat 1 files changed, 11 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/src/musepack/libmpc.cxx	Tue Sep 11 02:10:49 2007 +0300
+++ b/src/musepack/libmpc.cxx	Tue Sep 11 02:14:11 2007 +0300
@@ -359,14 +359,14 @@
 
         MpcInfo tags = getTags(p_Filename);
 
-        tuple_associate_string(tuple, "date", tags.date);
-        tuple_associate_string(tuple, "title", tags.title);
-        tuple_associate_string(tuple, "artist", tags.artist);
-        tuple_associate_string(tuple, "album", tags.album);
-        tuple_associate_int(tuple, "track-number", tags.track);
-        tuple_associate_int(tuple, "year", tags.year);
-        tuple_associate_string(tuple, "genre", tags.genre);
-        tuple_associate_string(tuple, "comment", tags.comment);
+        tuple_associate_string(tuple, FIELD_DATE, NULL, tags.date);
+        tuple_associate_string(tuple, FIELD_TITLE, NULL, tags.title);
+        tuple_associate_string(tuple, FIELD_ARTIST, NULL, tags.artist);
+        tuple_associate_string(tuple, FIELD_ALBUM, NULL, tags.album);
+        tuple_associate_int(tuple, FIELD_TRACK_NUMER, NULL, tags.track);
+        tuple_associate_int(tuple, FIELD_YEAR, NULL, tags.year);
+        tuple_associate_string(tuple, FIELD_GENRE, NULL, tags.genre);
+        tuple_associate_string(tuple, FIELD_COMMENT, NULL, tags.comment);
 
         freeTags(tags);
 
@@ -375,14 +375,14 @@
         mpc_reader_setup_file_vfs(&reader, input);
         mpc_streaminfo_read(&info, &reader.reader);
 
-        tuple_associate_int(tuple, "length", static_cast<int> (1000 * mpc_streaminfo_get_length(&info)));
+        tuple_associate_int(tuple, FIELD_LENGTH, NULL, static_cast<int> (1000 * mpc_streaminfo_get_length(&info)));
 
         gchar *scratch = g_strdup_printf("Musepack v%d (encoder %s)", info.stream_version, info.encoder);
-        tuple_associate_string(tuple, "codec", scratch);
+        tuple_associate_string(tuple, FIELD_CODEC, NULL, scratch);
         g_free(scratch);
 
         scratch = g_strdup_printf("lossy (%s)", info.profile_name);
-        tuple_associate_string(tuple, "quality", scratch);
+        tuple_associate_string(tuple, FIELD_QUALITY, NULL, scratch);
         g_free(scratch);
 
         vfs_fclose(input);