* Fix false positives in playlist caching optimization when we have duplicate file names in different directories.

This commit is contained in:
Justin Maggard
2012-02-10 23:35:11 +00:00
parent 6064099fb0
commit ab33ab34bc
5 changed files with 54 additions and 18 deletions

View File

@ -51,6 +51,9 @@ strip_ext(char * name);
int
make_dir(char * path, mode_t mode);
unsigned int
DJBHash(const char *str, int len);
int
is_video(const char * file);