summaryrefslogtreecommitdiffstats
path: root/macosx/HBPicture.h
blob: 24c6958771846496f705793aecc7ef29384e566a (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
34
35
//
//  HBPicture.h
//  HandBrake
//
//  Created by Damiano Galassi on 12/08/14.
//
//

#import <Foundation/Foundation.h>

@interface HBPicture : NSObject

- (void)applySettingsFromPreset:(NSDictionary *)preset;

@property (nonatomic, readwrite) int width;
@property (nonatomic, readwrite) int height;

@property (nonatomic, readwrite) BOOL autocrop;
@property (nonatomic, readwrite) int *crop;

@property (nonatomic, readwrite) int modulus;

/*
 anamorphic {
 mode
 keepDisplayAspect
 par_width
 par_height
 dar_width
 dar_height
 }
 modulus
 */

@end