[Mplayer-cvslog] CVS: main/input input.c,1.35,1.36 input.h,1.13,1.14
Zoltan Ponekker
pontscho at mplayerhq.hu
Thu Jun 6 09:13:59 CEST 2002
- Previous message: [Mplayer-cvslog] CVS: main/DOCS mplayer.1,1.174,1.175
- Next message: [Mplayer-cvslog] CVS: main/libvo mga_common.c,1.34,1.35 vo_xmga.c,1.71,1.72 vo_xv.c,1.94,1.95 vo_xvidix.c,1.39,1.40
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/input
In directory mail:/var/tmp.root/cvs-serv31063/input
Modified Files:
input.c input.h
Log Message:
add mute support ( step 1 ) and fixed panscan bugs (1000l for me)
Index: input.c
===================================================================
RCS file: /cvsroot/mplayer/main/input/input.c,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- input.c 4 Jun 2002 20:17:06 -0000 1.35
+++ input.c 6 Jun 2002 07:13:56 -0000 1.36
@@ -52,6 +52,7 @@
{ MP_CMD_OSD, "osd",0, { {MP_CMD_ARG_INT,{-1}}, {-1,{0}} } },
{ MP_CMD_VOLUME, "volume", 1, { { MP_CMD_ARG_INT,{0} }, {-1,{0}} } },
{ MP_CMD_MIXER_USEMASTER, "use_master", 0, { {-1,{0}} } },
+ { MP_CMD_MUTE, "mute", 0, { {-1,{0}} } },
{ MP_CMD_CONTRAST, "contrast",1, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
{ MP_CMD_BRIGHTNESS, "brightness",1, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
{ MP_CMD_HUE, "hue",1, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
@@ -205,6 +206,7 @@
{ { '/', 0 }, "volume -1" },
{ { '0', 0 }, "volume 1" },
{ { '*', 0 }, "volume 1" },
+ { { 'm', 0 }, "mute" },
{ { '1', 0 }, "contrast -1" },
{ { '2', 0 }, "contrast 1" },
{ { '3', 0 }, "brightness -1" },
@@ -220,7 +222,7 @@
{ { 'h', 0 }, "tv_step_channel 1" },
{ { 'k', 0 }, "tv_step_channel -1" },
{ { 'n', 0 }, "tv_step_norm" },
- { { 'm', 0 }, "tv_step_chanlist" },
+ { { 'u', 0 }, "tv_step_chanlist" },
#endif
#ifdef HAVE_NEW_GUI
{ { 'l', 0 }, "gui_loadfile" },
Index: input.h
===================================================================
RCS file: /cvsroot/mplayer/main/input/input.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- input.h 4 Jun 2002 20:17:06 -0000 1.13
+++ input.h 6 Jun 2002 07:13:56 -0000 1.14
@@ -27,6 +27,7 @@
#define MP_CMD_DVDNAV 22
#define MP_CMD_SCREENSHOT 23
#define MP_CMD_PANSCAN 24
+#define MP_CMD_MUTE 25
#define MP_CMD_GUI_EVENTS 5000
#define MP_CMD_GUI_LOADFILE 5001
- Previous message: [Mplayer-cvslog] CVS: main/DOCS mplayer.1,1.174,1.175
- Next message: [Mplayer-cvslog] CVS: main/libvo mga_common.c,1.34,1.35 vo_xmga.c,1.71,1.72 vo_xv.c,1.94,1.95 vo_xvidix.c,1.39,1.40
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list