VLCThumbnailsCache.h 346 B

123456789101112131415161718
  1. //
  2. // VLCThumbnailsCache.h
  3. // VLC for iOS
  4. //
  5. // Created by Gleb on 9/13/13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. // Refer to the COPYING file of the official project for license.
  9. //
  10. #import <Foundation/Foundation.h>
  11. @interface VLCThumbnailsCache : NSObject
  12. + (UIImage *)thumbnailForMediaFile:(MLFile *)mediaFile;
  13. @end