Mercurial > mplayer.hg
changeset 24965:ecc2d02a836a
Enable ontop command from mplayer to be sent to mplayer osx.
author | ulion |
---|---|
date | Fri, 09 Nov 2007 03:49:32 +0000 |
parents | 195a578e07d4 |
children | cc170348a763 |
files | libvo/vo_macosx.m |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/vo_macosx.m Fri Nov 09 01:56:31 2007 +0000 +++ b/libvo/vo_macosx.m Fri Nov 09 03:49:32 2007 +0000 @@ -323,7 +323,7 @@ case VOCTRL_PAUSE: return (int_pause=1); case VOCTRL_RESUME: return (int_pause=0); case VOCTRL_QUERY_FORMAT: return query_format(*((uint32_t*)data)); - case VOCTRL_ONTOP: vo_ontop = (!(vo_ontop)); [mpGLView ontop]; return VO_TRUE; + case VOCTRL_ONTOP: vo_ontop = (!(vo_ontop)); if(!shared_buffer){ [mpGLView ontop]; } else { [mplayerosxProxy ontop]; } return VO_TRUE; case VOCTRL_ROOTWIN: vo_rootwin = (!(vo_rootwin)); [mpGLView rootwin]; return VO_TRUE; case VOCTRL_FULLSCREEN: vo_fs = (!(vo_fs)); if(!shared_buffer){ [mpGLView fullscreen: NO]; } else { [mplayerosxProxy toggleFullscreen]; } return VO_TRUE; case VOCTRL_GET_PANSCAN: return VO_TRUE;