blob: e17114c456caf772229deef33090d25abbb201bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/* HBPreviewGenerator.h $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License. */
#import <Cocoa/Cocoa.h>
#include "hb.h"
@protocol HBPreviewGeneratorDelegate <NSObject>
- (void) didCreateMovieAtURL: (NSURL *) fileURL;
- (void) updateProgress: (double) progress info: (NSString *) progressInfo;
@end
@interface HBPreviewGenerator : NSObject
@property (nonatomic, assign) id <HBPreviewGeneratorDelegate> delegate;
@property (nonatomic) BOOL deinterlace;
- (id) initWithHandle: (hb_handle_t *) handle andTitle: (hb_title_t *) title;
/* Still image generator */
- (NSImage *) imageAtIndex: (NSUInteger) index;
- (NSUInteger) imagesCount;
- (void) purgeImageCache;
/* Video generator */
- (BOOL) createMovieAsyncWithImageIndex: (NSUInteger) index andDuration: (NSUInteger) duration;
- (void) cancel;
@end
|