1/* Album art extraction, caching, and scaling
2 *
3 * Project : minidlna
4 * Website : http://sourceforge.net/projects/minidlna/
5 * Author  : Justin Maggard
6 * Copyright (c) 2008 Justin Maggard
7 * This software is subject to the conditions detailed in the
8 * LICENCE file provided in this distribution.
9 * */
10#ifndef __ALBUMART_H__
11#define __ALBUMART_H__
12
13void
14update_if_album_art(const char * path);
15
16sqlite_int64
17find_album_art(const char * path, const char * image_data, int image_size);
18
19#endif
20