X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Flibrary.c;h=665a108ec149d7644bb9b8169ac31606e3531703;hb=4ab1c33de6f3b618a989859a6d7adcbae6aa9a72;hp=148f720aad6a9b64412db185e17e4b969f9c5fac;hpb=8a535461da984c7a3f80445a41a092d6f37b5b4b;p=omnplay diff --git a/src/library.c b/src/library.c index 148f720..665a108 100644 --- a/src/library.c +++ b/src/library.c @@ -57,27 +57,49 @@ int omnplay_library_normalize_item(omnplay_instance_t* app, playlist_item_t* ite { int r = 0; playlist_item_t* lib; + playlist_item_t prev; pthread_mutex_lock(&app->library.lock); + prev = *item; + lib = omnplay_library_find(app, item->id); item->error = 0; if(lib) { - if(!item->title[0]) { strcpy(item->title, lib->title); - r = 1; + g_warning("%s: [%s] title=[%s]->[%s]", __FUNCTION__, item->id, prev.title, item->title); + r++; }; - if(!item->dur || item->in < lib->in || (item->in + item->dur) > (lib->in + lib->dur)) + if(item->in < lib->in || item->in >= (lib->in + lib->dur)) { - item->dur = lib->dur; + g_warning("%s: [%s] (item->in=[%d] < lib->in=[%d] || item->in=[%d] >= (lib->in=[%d] + lib->dur=[%d]))", + __FUNCTION__, item->id, + item->in, lib->in, item->in, lib->in, lib->dur); + item->in = lib->in; - r = 1; + + g_warning("%s: [%s] in=[%d]->[%d]", __FUNCTION__, item->id, prev.in, item->in); + + r++; + }; + + if(!item->dur || (item->in + item->dur) > (lib->in + lib->dur)) + { + g_warning("%s: [%s] (!item->dur=[%d] || (item->in=[%d] + item->dur=[%d]) > (lib->in=[%d] + lib->dur=[%d])", + __FUNCTION__, item->id, + item->dur, item->in, item->dur, lib->in, lib->dur); + + item->dur = lib->in + lib->dur - item->in; + + g_warning("%s: [%s] dur=[%d]->[%d]", __FUNCTION__, item->id, prev.dur, item->dur); + + r++; }; } else @@ -174,8 +196,12 @@ int omnplay_library_load_file(playlist_item_t* items, int *pcount, char* filenam { memset(&item, 0, sizeof(playlist_item_t)); + g_warning("%s: [%s]", __FUNCTION__, l); + for(i = 0, sp_b = l; (NULL != (sp_r = strtok(sp_b, "\t"))); i++, sp_b = NULL) { + g_warning("%s: [%d]=[%s]", __FUNCTION__, i, sp_r); + switch(i) { case 0: strncpy(item.id, sp_r, PATH_MAX); break; @@ -187,6 +213,7 @@ int omnplay_library_load_file(playlist_item_t* items, int *pcount, char* filenam /* insert item */ items[c++] = item; + g_warning("%s: id=[%s], in=[%d], dur=[%d]", __FUNCTION__, item.id, item.in, item.dur); } else g_warning("omnplay_library_load_file: ignored line [%s]\n", l);