mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-06 12:33:22 -05:00
27 lines
426 B
C
27 lines
426 B
C
|
|
#ifndef __FILESCANNER_H__
|
|
#define __FILESCANNER_H__
|
|
|
|
#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);
|
|
|
|
#ifdef ITUNES
|
|
void
|
|
scan_itunes_itml(char *file);
|
|
#endif
|
|
|
|
const char *
|
|
filename_from_path(const char *path);
|
|
|
|
#endif /* !__FILESCANNER_H__ */
|