/* HBPreviewGenerator.h $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ #import NS_ASSUME_NONNULL_BEGIN @class HBCore; @class HBJob; @protocol HBPreviewGeneratorDelegate - (void) reloadPreviews; - (void) didCreateMovieAtURL: (NSURL *) fileURL; - (void) didCancelMovieCreation; - (void) updateProgress: (double) progress info: (NSString *) progressInfo; @end @interface HBPreviewGenerator : NSObject @property (nonatomic, assign, nullable) id delegate; - (instancetype)init NS_UNAVAILABLE; - (instancetype)initWithCore:(HBCore *)core job:(HBJob *)job NS_DESIGNATED_INITIALIZER; /* Still image generator */ - (nullable CGImageRef) copyImageAtIndex: (NSUInteger) index shouldCache: (BOOL) cache CF_RETURNS_RETAINED; @property (nonatomic, readonly) NSUInteger imagesCount; @property (nonatomic, readonly) CGSize imageSize; - (void) purgeImageCache; @property (nonatomic, readonly, copy) NSString *info; /* Video generator */ - (BOOL) createMovieAsyncWithImageAtIndex: (NSUInteger) index duration: (NSUInteger) seconds; - (void) cancel; @end NS_ASSUME_NONNULL_END