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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/* HBVideo.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 <Foundation/Foundation.h>
#import "HBPresetCoding.h"
@class HBJob;
NS_ASSUME_NONNULL_BEGIN
typedef NS_ENUM(NSUInteger, HBVideoQualityType) {
HBVideoQualityTypeAvgBitrate,
HBVideoQualityTypeConstantQuality,
};
typedef NS_ENUM(NSUInteger, HBVideoFrameRateMode) {
HBVideoFrameRateModeVFR_PFR,
HBVideoFrameRateModeCFR,
};
extern NSString * const HBVideoChangedNotification;
/**
* HBVideo
*/
@interface HBVideo : NSObject <NSSecureCoding, NSCopying, HBPresetCoding>
- (instancetype)initWithJob:(HBJob *)job;
- (void)containerChanged;
@property (nonatomic, readwrite) int encoder;
@property (nonatomic, readwrite) HBVideoQualityType qualityType;
@property (nonatomic, readwrite) int avgBitrate;
@property (nonatomic, readwrite) double quality;
@property (nonatomic, readwrite) HBVideoFrameRateMode frameRateMode;
@property (nonatomic, readwrite) int frameRate;
@property (nonatomic, readwrite) BOOL twoPass;
@property (nonatomic, readwrite) BOOL turboTwoPass;
/**
* Encoder specifics options
*/
@property (nonatomic, readwrite) BOOL advancedOptions;
@property (nonatomic, readwrite, copy) NSString *preset;
@property (nonatomic, readwrite, copy) NSString *tune;
@property (nonatomic, readwrite, copy) NSString *profile;
@property (nonatomic, readwrite, copy) NSString *level;
@property (nonatomic, readwrite, copy) NSString *videoOptionExtra;
@property (nonatomic, readwrite) BOOL fastDecode;
@property (nonatomic, readwrite, weak) HBJob *job;
@property (nonatomic, readonly) NSString *completeTune;
@property (nonatomic, readwrite, weak, nullable) NSUndoManager *undo;
@end
NS_ASSUME_NONNULL_END
|