diff options
author | Damiano Galassi <[email protected]> | 2016-01-28 07:32:16 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2016-01-28 07:32:16 +0100 |
commit | a37f528f742c2b27db3995c7b22147d9ef4d7049 (patch) | |
tree | 30e407ff65c15012425ba0f5379bde8d5a53634d /macosx/HBAudioTrack.h | |
parent | aa9e61d194f5b2a9f54f49067eb85d2655feb20d (diff) |
MacGui: fix some static anaylizer warnings.
Diffstat (limited to 'macosx/HBAudioTrack.h')
-rw-r--r-- | macosx/HBAudioTrack.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/macosx/HBAudioTrack.h b/macosx/HBAudioTrack.h index 7bf5c8ecc..c259812e8 100644 --- a/macosx/HBAudioTrack.h +++ b/macosx/HBAudioTrack.h @@ -46,9 +46,9 @@ extern NSString *keyAudioBitrate; @property (nonatomic, strong) NSDictionary *track; @property (nonatomic, strong, nullable) NSDictionary *codec; -@property (nonatomic, strong) NSDictionary *mixdown; -@property (nonatomic, strong) NSDictionary *sampleRate; -@property (nonatomic, strong) NSDictionary *bitRate; +@property (nonatomic, strong, nullable) NSDictionary *mixdown; +@property (nonatomic, strong, nullable) NSDictionary *sampleRate; +@property (nonatomic, strong, nullable) NSDictionary *bitRate; @property (nonatomic) double drc; @property (nonatomic) double gain; @property (nonatomic) int container; @@ -63,7 +63,7 @@ extern NSString *keyAudioBitrate; @property (nonatomic, readonly) BOOL enabled; - (void) setTrackFromIndex: (int) aValue; -- (BOOL) setCodecFromName: (NSString *) aValue; +- (BOOL) setCodecFromName: (nullable NSString *) aValue; - (void) setMixdownFromName: (NSString *) aValue; - (void) setSampleRateFromName: (NSString *) aValue; - (void) setBitRateFromName: (NSString *) aValue; |