mirror of
https://github.com/mpv-player/mpv
synced 2024-12-28 06:03:45 +01:00
resize
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1754 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
9e5096e8fb
commit
00b8ad21e9
16
mplayer.c
16
mplayer.c
@ -573,7 +573,11 @@ if(!parse_codec_cfg(get_path("codecs.conf"))){
|
||||
play_next_file:
|
||||
filename=(num_filenames>0)?filenames[curr_filename]:NULL;
|
||||
#ifdef HAVE_NEW_GUI
|
||||
strcpy( mplShMem->Filename,filename );
|
||||
if ( use_gui )
|
||||
{
|
||||
strcpy( mplShMem->Filename,filename );
|
||||
mplShMem->Playing=1;
|
||||
}
|
||||
#endif
|
||||
if(filename) mp_msg(MSGT_CPLAYER,MSGL_INFO,"Playing %s\n", filename);
|
||||
|
||||
@ -954,6 +958,16 @@ current_module="init_libvo";
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_NEW_GUI
|
||||
if ( use_gui )
|
||||
{
|
||||
if ( !appMPlayer.subWindow.isFullScreen )
|
||||
wsResizeWindow( &appMPlayer.subWindow,sh_video->disp_w,sh_video->disp_h );
|
||||
screen_size_x=appMPlayer.subWindow.Width;
|
||||
screen_size_y=appMPlayer.subWindow.Height;
|
||||
}
|
||||
#endif
|
||||
|
||||
mp_msg(MSGT_CPLAYER,MSGL_V,"video_out->init(%dx%d->%dx%d,flags=%d,'%s',0x%X)\n",
|
||||
sh_video->disp_w,sh_video->disp_h,
|
||||
screen_size_x,screen_size_y,
|
||||
|
Loading…
Reference in New Issue
Block a user