Mercurial > audlegacy-plugins
diff src/wav/wav.c @ 1976:5fa26178eaef
s/tuple_/aud_tuple_/g
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Sun, 07 Oct 2007 00:22:59 -0500 |
parents | 6acf1bda788b |
children | fa9f85cebade |
line wrap: on
line diff
--- a/src/wav/wav.c Wed Oct 03 17:24:59 2007 +0200 +++ b/src/wav/wav.c Sun Oct 07 00:22:59 2007 -0500 @@ -179,19 +179,19 @@ Tuple *tuple; gchar *title; - tuple = tuple_new_from_filename(filename); + tuple = aud_tuple_new_from_filename(filename); - tuple_associate_string(tuple, FIELD_CODEC, NULL, "RIFF/WAV Audio (ADPCM)"); - tuple_associate_string(tuple, FIELD_QUALITY, NULL, "lossless"); + aud_tuple_associate_string(tuple, FIELD_CODEC, NULL, "RIFF/WAV Audio (ADPCM)"); + aud_tuple_associate_string(tuple, FIELD_QUALITY, NULL, "lossless"); - title = tuple_formatter_make_title_string(tuple, get_gentitle_format()); + title = aud_tuple_formatter_make_title_string(tuple, get_gentitle_format()); if (*title == '\0') { g_free(title); - title = g_strdup(tuple_get_string(tuple, FIELD_FILE_NAME, NULL)); + title = g_strdup(aud_tuple_get_string(tuple, FIELD_FILE_NAME, NULL)); } - tuple_free(tuple); + aud_tuple_free(tuple); return title; }