blob: d1fc9888da50156c3b4046d69d0f1bb03ebec72b (
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
|
/* HBUtilities.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>
@interface HBUtilities : NSObject
/**
* Genetares a file name automatically based on the inputs,
* it can be configured with NSUserDefaults.
*
* @param sourceName the name of the source file
* @param title the title number
* @param chaptersRange the selected chapters range
* @param quality the video encoder quality
* @param bitrate the video encoder bitrate
* @param videoCodec the video encoder type
*
* @return a NSString containing the required info
*/
+ (NSString *)automaticNameForSource:(NSString *)sourceName
title:(NSUInteger)title
chapters:(NSRange)chaptersRange
quality:(NSString *)quality
bitrate:(NSString *)bitrate
videoCodec:(uint32_t *)codec;
@end
|