1234567891011121314151617181920212223 |
- /*****************************************************************************
- * VLCThumbnailsCache.h
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2013-2014 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Gleb Pinigin <gpinigin # gmail.com>
- * Felix Paul Kühne <fkuehne # videolan.org>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import <Foundation/Foundation.h>
- @interface VLCThumbnailsCache : NSObject
- + (UIImage *)thumbnailForMediaFile:(MLFile *)mediaFile;
- + (UIImage *)thumbnailForMediaItemWithTitle:(NSString *)title Artist:(NSString*)artist andAlbumName:(NSString*)albumname;
- @end
|