VLCKit
All Classes Functions Variables Properties Pages
VLCMediaThumbnailer.h
1 /*****************************************************************************
2  * VLCKit: VLCMediaThumbnailer
3  *****************************************************************************
4  * Copyright (C) 2010-2012, 2021 Pierre d'Herbemont and VideoLAN
5  *
6  * Authors: Pierre d'Herbemont
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation; either version 2.1 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program; if not, write to the Free Software Foundation,
20  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22 
23 #import <Foundation/Foundation.h>
24 #import <CoreGraphics/CoreGraphics.h>
25 
26 @class VLCMedia, VLCLibrary;
28 
29 NS_ASSUME_NONNULL_BEGIN
30 
34 @interface VLCMediaThumbnailer : NSObject
35 
43 + (VLCMediaThumbnailer *)thumbnailerWithMedia:(VLCMedia *)media andDelegate:(id<VLCMediaThumbnailerDelegate>)delegate;
51 + (VLCMediaThumbnailer *)thumbnailerWithMedia:(VLCMedia *)media delegate:(id<VLCMediaThumbnailerDelegate>)delegate andVLCLibrary:(nullable VLCLibrary *)library;
52 
56 - (void)fetchThumbnail;
57 
61 @property (readwrite, weak, nonatomic, nullable) id<VLCMediaThumbnailerDelegate> delegate;
65 @property (readwrite, nonatomic) VLCMedia *media;
69 @property (readwrite, assign, nonatomic, nullable) CGImageRef thumbnail;
70 
77 @property (readwrite, assign, nonatomic) CGFloat thumbnailHeight;
78 
85 @property (readwrite, assign, nonatomic) CGFloat thumbnailWidth;
86 
93 @property (readwrite, assign, nonatomic) float snapshotPosition;
94 @end
95 
100 @required
106 - (void)mediaThumbnailerDidTimeOut:(VLCMediaThumbnailer *)mediaThumbnailer;
112 - (void)mediaThumbnailer:(VLCMediaThumbnailer *)mediaThumbnailer didFinishThumbnail:(CGImageRef)thumbnail;
113 @end
114 
115 NS_ASSUME_NONNULL_END
VLCMediaThumbnailer::snapshotPosition
float snapshotPosition
Definition: VLCMediaThumbnailer.h:93
VLCMedia
Definition: VLCMedia.h:112
VLCMediaThumbnailer::thumbnail
CGImageRef thumbnail
Definition: VLCMediaThumbnailer.h:69
VLCMediaThumbnailer
Definition: VLCMediaThumbnailer.h:34
VLCMediaThumbnailer::thumbnailHeight
CGFloat thumbnailHeight
Definition: VLCMediaThumbnailer.h:77
VLCLibrary
Definition: VLCLibrary.h:44
VLCMediaThumbnailer::delegate
id< VLCMediaThumbnailerDelegate > delegate
Definition: VLCMediaThumbnailer.h:61
-[VLCMediaThumbnailer fetchThumbnail]
void fetchThumbnail()
VLCMediaThumbnailer::thumbnailWidth
CGFloat thumbnailWidth
Definition: VLCMediaThumbnailer.h:85
VLCMediaThumbnailerDelegate-p
Definition: VLCMediaThumbnailer.h:99
VLCMediaThumbnailer::media
VLCMedia * media
Definition: VLCMediaThumbnailer.h:65