add mixer support

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@463 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
pontscho 2001-04-16 00:34:10 +00:00
parent 999ff33abd
commit 974683f4f0
2 changed files with 7 additions and 1 deletions

View File

@ -40,4 +40,6 @@ static char* help_text=
" q or ESC stop playing and quit program\n"
" + or - adjust audio delay by +/- 0.1 second\n"
" o toggle OSD: none / seek / seek+timer\n"
" * or / increase or decrease volume\n"
" m or c use mixer master or pcm channel\n"
"\n";

View File

@ -95,7 +95,11 @@ int lirc_mp_getinput(){
{"FFWD" , KEY_UP},
{"RWND" , KEY_LEFT},
{"FRWND" , KEY_DOWN},
{"PAUSE", 'p'}
{"PAUSE", 'p'},
{"INCVOL", '*'},
{"DECVOL", '/'},
{"MASTER", 'm'},
{"PCM", 'c'}
};
char *code;