minidlna/albumart.h
Justin Maggard e777a93a5e * Remove ALBUM_ART_PN from the database, since it's forced to be JPEG_TN now.
* Add a DISC entry to the database, so when the client sorts a multi-disc audio album by track, we can sort by disc first.
2009-10-14 01:14:10 +00:00

20 lines
496 B
C

/* Album art extraction, caching, and scaling
*
* Project : minidlna
* Website : http://sourceforge.net/projects/minidlna/
* Author : Justin Maggard
* Copyright (c) 2008 Justin Maggard
* This software is subject to the conditions detailed in the
* LICENCE file provided in this distribution.
* */
#ifndef __ALBUMART_H__
#define __ALBUMART_H__
void
update_if_album_art(const char * path);
sqlite_int64
find_album_art(const char * path, const char * image_data, int image_size);
#endif