2009-04-19 09:10:19 -04:00
|
|
|
|
|
|
|
#ifndef __FILESCANNER_H__
|
|
|
|
#define __FILESCANNER_H__
|
|
|
|
|
|
|
|
#include "ff-dbstruct.h"
|
|
|
|
|
|
|
|
int
|
|
|
|
filescanner_init(void);
|
|
|
|
|
|
|
|
void
|
|
|
|
filescanner_deinit(void);
|
|
|
|
|
|
|
|
/* Actual scanners */
|
|
|
|
int
|
2009-04-20 11:34:39 -04:00
|
|
|
scan_metadata_ffmpeg(char *file, struct media_file_info *mfi);
|
2009-04-19 09:10:19 -04:00
|
|
|
|
|
|
|
int
|
2009-04-20 11:34:39 -04:00
|
|
|
scan_url_file(char *file, struct media_file_info *mfi);
|
2009-04-19 09:10:19 -04:00
|
|
|
|
2009-04-20 11:34:39 -04:00
|
|
|
void
|
2009-04-20 10:27:56 -04:00
|
|
|
scan_m3u_playlist(char *file);
|
|
|
|
|
2009-04-19 09:10:19 -04:00
|
|
|
#endif /* !__FILESCANNER_H__ */
|