diff options
author | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-08-31 22:35:04 +0000 |
---|---|---|
committer | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-08-31 22:35:04 +0000 |
commit | 9a0ea39d8b7ba09673e8811e87ab09d0c13f0f33 (patch) | |
tree | 7a5e71ecb21fbb269fca89846e1fd2b899dcd0a1 /mplayer.c | |
parent | abca9bccc2256dfd44bacf7ba722c69638ae56aa (diff) | |
download | mpv-9a0ea39d8b7ba09673e8811e87ab09d0c13f0f33.tar.bz2 mpv-9a0ea39d8b7ba09673e8811e87ab09d0c13f0f33.tar.xz |
fixed 'n' key bug :)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1817 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r-- | mplayer.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -555,6 +555,8 @@ if(!parse_codec_cfg(get_path("codecs.conf"))){ if ( !use_gui ) load_termcap(NULL); // load key-codes #endif +// ========== Init keyboard FIFO (connection to libvo) ============ +make_pipe(&keyb_fifo_get,&keyb_fifo_put); //========= Catch terminate signals: ================ // terminate requests: @@ -921,10 +923,6 @@ if(auto_quality>0){ sh_audio=d_audio->sh=NULL; } -// ========== Init keyboard FIFO (connection to libvo) ============ - -make_pipe(&keyb_fifo_get,&keyb_fifo_put); - // ========== Init display (sh_video->disp_w*sh_video->disp_h/out_fmt) ============ current_module="init_libvo"; |