blob: bc94754436aeed16f9e4cd03030e75cceeae311d (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/* HBAudioTrackPreset.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>
/**
* HBAudioTrackPreset
* a KVO enabled class used in the Audio Defaults panels,
* automatically validates the values.
*/
@interface HBAudioTrackPreset : NSObject <NSCoding, NSCopying>
/**
* track properties.
*/
@property (nonatomic, readwrite) int encoder;
@property (nonatomic, readwrite) int mixdown;
@property (nonatomic, readwrite) int sampleRate;
@property (nonatomic, readwrite) int bitRate;
@property (nonatomic, readwrite) int gain;
@property (nonatomic, readwrite) double drc;
/**
* Arrays of possible options for the track properties.
*/
@property (nonatomic, readonly) NSArray *encoders;
@property (nonatomic, readonly) NSArray *mixdowns;
@property (nonatomic, readonly) NSArray *samplerates;
@property (nonatomic, readonly) NSArray *bitrates;
@end
/**
* A series of value trasformers to bridge the libhb enums
* to the textual rapresentations used in the interface.
*/
@interface HBEncoderTrasformer : NSValueTransformer
@end
@interface HBMixdownTrasformer : NSValueTransformer
@end
@interface HBSampleRateTrasformer : NSValueTransformer
@end
@interface HBIntegerTrasformer : NSValueTransformer
@end
|