/***************************************************************************** * VLCThumbnailsCache.h * VLC for iOS ***************************************************************************** * Copyright (c) 2013-2014 VideoLAN. All rights reserved. * $Id$ * * Authors: Gleb Pinigin * Felix Paul Kühne * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import @interface VLCThumbnailsCache : NSObject + (UIImage *)thumbnailForMediaFile:(MLFile *)mediaFile; + (UIImage *)thumbnailForMediaItemWithTitle:(NSString *)title Artist:(NSString*)artist andAlbumName:(NSString*)albumname; + (UIImage *)thumbnailForShow:(MLShow *)mediaShow; + (UIImage *)thumbnailForLabel:(MLLabel *)mediaLabel; @end