Enlightenment CVS committal Author : balony Project : e17 Module : apps/evfs
Dir : e17/apps/evfs/src/plugins/meta Modified Files: evfs_meta_audio.c Log Message: Added grabbing of album tag. =================================================================== RCS file: /cvs/e/e17/apps/evfs/src/plugins/meta/evfs_meta_audio.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- evfs_meta_audio.c 23 Apr 2006 13:34:36 -0000 1.2 +++ evfs_meta_audio.c 18 Aug 2006 23:48:23 -0000 1.3 @@ -111,6 +111,19 @@ obj->value = NULL; ret_list = evas_list_append(ret_list, obj); } + + tmp = taglib_tag_album(taglib_tag); + if (tmp) { + obj = calloc(1,sizeof(evfs_meta_obj)); + obj->key = strdup("album"); + obj->value = strdup(tmp); + ret_list = evas_list_append(ret_list, obj); + } else { + obj = calloc(1,sizeof(evfs_meta_obj)); + obj->key = strdup("album"); + obj->value = NULL; + ret_list = evas_list_append(ret_list, obj); + } taglib_props = taglib_file_audioproperties(taglib_file); if(taglib_props) { ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs