diff options
author | Rodeo <[email protected]> | 2013-03-18 18:07:48 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2013-03-18 18:07:48 +0000 |
commit | 30ddd53e26b3e2aa5930c6cf985f938e36985aed (patch) | |
tree | 3399efbb5727360437672b8918a32dab72420e22 /macosx/HBPreviewController.m | |
parent | b0aa37a7ff20acafe7a28fe67c69699515d963c5 (diff) |
hb_system_sleep: refactoring.
Also:
- release power assertions before freeing them
- actually free the power assertions in hb_close() (previously unused)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5340 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBPreviewController.m')
-rw-r--r-- | macosx/HBPreviewController.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/HBPreviewController.m b/macosx/HBPreviewController.m index 4ef2824e3..5214cf0ea 100644 --- a/macosx/HBPreviewController.m +++ b/macosx/HBPreviewController.m @@ -687,7 +687,7 @@ { fEncodeState = 2; hb_stop(fPreviewLibhb); - hb_allow_sleep(fPreviewLibhb); + hb_system_sleep_allow(fPreviewLibhb); [NSAnimationContext beginGrouping]; [[NSAnimationContext currentContext] setDuration:0.2]; [[fEncodingControlBox animator] setHidden:YES]; @@ -805,7 +805,7 @@ /* Let fPreviewLibhb do the job */ fEncodeState = 1; - hb_prevent_sleep(fPreviewLibhb); + hb_system_sleep_prevent(fPreviewLibhb); hb_start(fPreviewLibhb); } @@ -900,7 +900,7 @@ fEncodeState = 0; /* Done encoding, allow system sleep for the preview handle */ - hb_allow_sleep(fPreviewLibhb); + hb_system_sleep_allow(fPreviewLibhb); break; } } |