minidlna/albumart.h
Justin Maggard b74e2d33f3 * Use internal music metadata functions intead of taglib.
1) Taglib does not support MP4 or WMA/ASF without hacking it in there.
  2) Taglib is C++, so it's nice to remove that dependency.
* Use embedded album art where available.
2009-02-25 21:16:51 +00:00

17 lines
441 B
C

/* Utility functions
*
* 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__
sqlite_int64
find_album_art(const char * path, char * dlna_pn, const char * image_data, int image_size);
#endif