summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-04 19:23:58 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-04 19:23:58 +0000
commit0cfdf68bfbace49b8e1cd0954542da86bc0aa0f6 (patch)
tree0800301bcfcb1bc07bdc38c791aced32a6052772 /mplayer.c
parentb049fdd4f759b5713a266bd380e96e8a80a571b2 (diff)
downloadmpv-0cfdf68bfbace49b8e1cd0954542da86bc0aa0f6.tar.bz2
mpv-0cfdf68bfbace49b8e1cd0954542da86bc0aa0f6.tar.xz
- fix mixer handling
- some change in menu - fix evLoadPlay bug - etc git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6904 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mplayer.c b/mplayer.c
index a77e8157ad..263109e798 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -1358,7 +1358,7 @@ fflush(stdout);
guiGetEvent( guiSetFileName,filename );
if ( sh_audio ) guiIntfStruct.AudioType=sh_audio->channels; else guiIntfStruct.AudioType=0;
if ( !sh_video && sh_audio ) guiGetEvent( guiSetAudioOnly,(char *)1 ); else guiGetEvent( guiSetAudioOnly,(char *)0 );
- guiGetEvent( guiSetVolume,NULL );
+ guiGetEvent( guiSetValues,NULL );
}
#endif
@@ -2930,6 +2930,7 @@ if(rel_seek_secs || abs_seek_pos){
if ( sh_video ) guiIntfStruct.TimeSec=d_video->pts;
else if ( sh_audio ) guiIntfStruct.TimeSec=sh_audio->timer;
guiGetEvent( guiReDraw,NULL );
+ guiGetEvent( guiSetVolume,NULL );
if(guiIntfStruct.Playing==0) break; // STOP
if(guiIntfStruct.Playing==2) osd_function=OSD_PAUSE;
if ( guiIntfStruct.DiskChanged || guiIntfStruct.FilenameChanged ) goto goto_next_file;