diff options
author | ritsuka <[email protected]> | 2014-08-19 16:38:33 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-08-19 16:38:33 +0000 |
commit | a37c2119baece04d28cd75816cd31270e317197a (patch) | |
tree | 567c00bd0ca0e34a0e0e0da978bf442797ec490e /macosx/HBVideo.h | |
parent | 5c5d825990ac79b9e7faa2d79a3edbd8b6232eea (diff) |
MacGui: added support for NLMeans denoise. Added the HBFilters class to store the filters settings, previously they were stored directly in the HBPictureController window controller.
Removed the filter tab animations for now, they will be added back later.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6319 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBVideo.h')
-rw-r--r-- | macosx/HBVideo.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/macosx/HBVideo.h b/macosx/HBVideo.h new file mode 100644 index 000000000..3c174824f --- /dev/null +++ b/macosx/HBVideo.h @@ -0,0 +1,34 @@ +// +// HBVideo.h +// HandBrake +// +// Created by Damiano Galassi on 12/08/14. +// +// + +#import <Foundation/Foundation.h> + +@interface HBVideo : NSObject + +/* + videoEncoder + videoEncoderTag + + qualityType + avgBitrate + quality + + frameRate + frameRateTag + frameRateMode + + fastFirstPass + twoPass + turboTwoPass + + encoderOptions { + x264 + lav + }*/ + +@end |