owntone-server/src/library/filescanner.h

30 lines
469 B
C
Raw Normal View History

#ifndef __FILESCANNER_H__
#define __FILESCANNER_H__
2009-06-07 12:58:02 -04:00
#include "db.h"
/* Actual scanners */
int
scan_metadata_ffmpeg(const char *file, struct media_file_info *mfi);
void
scan_playlist(char *file, time_t mtime, int dir_id);
void
scan_smartpl(char *file, time_t mtime, int dir_id);
2009-11-22 05:17:33 -05:00
#ifdef ITUNES
void
scan_itunes_itml(char *file);
#endif
const char *
filename_from_path(const char *path);
char *
strip_extension(const char *path);
#endif /* !__FILESCANNER_H__ */