mirror of
https://git.code.sf.net/p/minidlna/git
synced 2024-10-31 16:58:06 +00:00
9e534c56fd
Detect when a .nfo file changes, and rescan metadata for the associated video file.
87 lines
2.2 KiB
C
87 lines
2.2 KiB
C
/* Media file scanner
|
|
*
|
|
* Project : minidlna
|
|
* Website : http://sourceforge.net/projects/minidlna/
|
|
* Author : Justin Maggard
|
|
*
|
|
* MiniDLNA media server
|
|
* Copyright (C) 2008-2009 Justin Maggard
|
|
*
|
|
* This file is part of MiniDLNA.
|
|
*
|
|
* MiniDLNA is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* MiniDLNA is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with MiniDLNA. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef __SCANNER_H__
|
|
#define __SCANNER_H__
|
|
|
|
/* Try to be generally PlaysForSure compatible by using similar IDs */
|
|
#define BROWSEDIR_ID "64"
|
|
|
|
#define MUSIC_ID "1"
|
|
#define MUSIC_ALL_ID "1$4"
|
|
#define MUSIC_GENRE_ID "1$5"
|
|
#define MUSIC_ARTIST_ID "1$6"
|
|
#define MUSIC_ALBUM_ID "1$7"
|
|
#define MUSIC_PLIST_ID "1$F"
|
|
#define MUSIC_DIR_ID "1$14"
|
|
#define MUSIC_CONTRIB_ARTIST_ID "1$100"
|
|
#define MUSIC_ALBUM_ARTIST_ID "1$107"
|
|
#define MUSIC_COMPOSER_ID "1$108"
|
|
#define MUSIC_RATING_ID "1$101"
|
|
|
|
#define VIDEO_ID "2"
|
|
#define VIDEO_ALL_ID "2$8"
|
|
#define VIDEO_GENRE_ID "2$9"
|
|
#define VIDEO_ACTOR_ID "2$A"
|
|
#define VIDEO_SERIES_ID "2$E"
|
|
#define VIDEO_PLIST_ID "2$10"
|
|
#define VIDEO_DIR_ID "2$15"
|
|
#define VIDEO_RATING_ID "2$200"
|
|
|
|
#define IMAGE_ID "3"
|
|
#define IMAGE_ALL_ID "3$B"
|
|
#define IMAGE_DATE_ID "3$C"
|
|
#define IMAGE_ALBUM_ID "3$D"
|
|
#define IMAGE_CAMERA_ID "3$D2" // PlaysForSure == Keyword
|
|
#define IMAGE_PLIST_ID "3$11"
|
|
#define IMAGE_DIR_ID "3$16"
|
|
#define IMAGE_RATING_ID "3$300"
|
|
|
|
extern int valid_cache;
|
|
|
|
int
|
|
is_video(const char *file);
|
|
|
|
int
|
|
is_audio(const char *file);
|
|
|
|
int
|
|
is_image(const char *file);
|
|
|
|
int64_t
|
|
get_next_available_id(const char *table, const char *parentID);
|
|
|
|
int64_t
|
|
insert_directory(const char *name, const char *path, const char *base, const char *parentID, int objectID);
|
|
|
|
int
|
|
insert_file(const char *name, const char *path, const char *parentID, int object, media_types dir_types);
|
|
|
|
int
|
|
CreateDatabase(void);
|
|
|
|
void
|
|
start_scanner();
|
|
|
|
#endif
|