mirror of https://github.com/HandBrake/HandBrake
34 lines
756 B
Objective-C
34 lines
756 B
Objective-C
/* HBStateFormatter+Private.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 "HBStateFormatter.h"
|
|
#include "handbrake/handbrake.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface HBStateFormatter (Private)
|
|
|
|
/**
|
|
* Returns a string containing the formatted value of the provided hb_state_t struct.
|
|
*
|
|
* @param s hb_state_t
|
|
* @param title the title of the current job
|
|
*/
|
|
- (NSString *)stateToString:(hb_state_t)s;
|
|
|
|
/**
|
|
* Returns a float containing the completion percent.
|
|
* the float range is [0,1]
|
|
*
|
|
* @param s hb_state_t
|
|
*/
|
|
- (float)stateToPercentComplete:(hb_state_t)s;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|