diff --git a/video/out/cocoa_common.h b/video/out/cocoa_common.h index f6af87f3b7..081c43d2ce 100644 --- a/video/out/cocoa_common.h +++ b/video/out/cocoa_common.h @@ -39,8 +39,6 @@ void vo_cocoa_swap_buffers(struct vo *vo); int vo_cocoa_check_events(struct vo *vo); void vo_cocoa_fullscreen(struct vo *vo); void vo_cocoa_ontop(struct vo *vo); -void vo_cocoa_pause(struct vo *vo); -void vo_cocoa_resume(struct vo *vo); int vo_cocoa_control(struct vo *vo, int *events, int request, void *arg); void vo_cocoa_register_resize_callback(struct vo *vo, diff --git a/video/out/cocoa_common.m b/video/out/cocoa_common.m index 01ccc34d98..83586387b9 100644 --- a/video/out/cocoa_common.m +++ b/video/out/cocoa_common.m @@ -184,16 +184,6 @@ void vo_cocoa_uninit(struct vo *vo) }); } -void vo_cocoa_pause(struct vo *vo) -{ - enable_power_management(vo); -} - -void vo_cocoa_resume(struct vo *vo) -{ - disable_power_management(vo); -} - void vo_cocoa_register_resize_callback(struct vo *vo, void (*cb)(struct vo *vo, int w, int h)) { @@ -556,10 +546,10 @@ int vo_cocoa_control(struct vo *vo, int *events, int request, void *arg) return VO_TRUE; } case VOCTRL_RESTORE_SCREENSAVER: - vo_cocoa_pause(vo); + enable_power_management(vo); return VO_TRUE; case VOCTRL_KILL_SCREENSAVER: - vo_cocoa_resume(vo); + disable_power_management(vo); return VO_TRUE; } return VO_NOTIMPL;