[MPlayer-dev-eng] [PATCH] dynamic subtitles position

Tomas Konir moje at molly.vabo.cz
Sat Mar 9 17:19:16 CET 2002


Hi
This is small patch to allow moving with subtitles while playing (better, 
then have only static -subpos 'value'). Using new input and keys 'r' and 
't' for moving up and down.

	MOJE 

-- 
Tomas Konir
Brno
ICQ 25849167

-------------- next part --------------
diff -Nur main/input/input.c main_sub/input/input.c
--- main/input/input.c	Sat Mar  9 12:49:43 2002
+++ main_sub/input/input.c	Sat Mar  9 12:37:34 2002
@@ -49,6 +49,7 @@
   { MP_CMD_HUE, "hue",1,  { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
   { MP_CMD_SATURATION, "saturation",1,  { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} }  },
   { MP_CMD_FRAMEDROPPING, "frame_drop",0, { { MP_CMD_ARG_INT,{-1} }, {-1,{0}} } },
+  { MP_CMD_SUB_POS, "sub_pos", 1, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
 #ifdef USE_TV
   { MP_CMD_TV_STEP_CHANNEL, "tv_step_channel", 1,  { { MP_CMD_ARG_INT ,{0}}, {-1,{0}} }},
   { MP_CMD_TV_STEP_NORM, "tv_step_norm",0, { {-1,{0}} }  },
@@ -176,6 +177,8 @@
   { { '7', 0 }, "saturation -1" },
   { { '8', 0 }, "saturation 1" },
   { { 'd', 0 }, "frame_drop" },
+  { { 'r', 0 }, "sub_pos -1" },
+  { { 't', 0 }, "sub_pos +1" },
 #ifdef USE_TV
   { { 'h', 0 }, "tv_step_channel 1" },
   { { 'k', 0 }, "tv_step_channel -1" },
diff -Nur main/input/input.h main_sub/input/input.h
--- main/input/input.h	Sat Mar  9 12:49:43 2002
+++ main_sub/input/input.h	Sat Mar  9 12:37:34 2002
@@ -22,6 +22,7 @@
 #define MP_CMD_TV_STEP_NORM 18
 #define MP_CMD_TV_STEP_CHANNEL_LIST 19
 #define MP_CMD_VO_FULLSCREEN 20
+#define MP_CMD_SUB_POS 21
 
 #define MP_CMD_GUI_EVENTS       5000
 #define MP_CMD_GUI_LOADFILE     5001
diff -Nur main/mplayer.c main_sub/mplayer.c
--- main/mplayer.c	Sat Mar  9 12:49:43 2002
+++ main_sub/mplayer.c	Sat Mar  9 16:50:50 2002
@@ -2630,6 +2630,15 @@
 #endif
 	video_out->control(VOCTRL_FULLSCREEN, 0);
     } break;
+    case MP_CMD_SUB_POS:
+    {
+        int v;
+	v = cmd->args[0].v.i;
+    
+	sub_pos+=v;
+	if(sub_pos >100) sub_pos=100;
+	if(sub_pos <0) sub_pos=0;
+    }	break;
     default : {
 #ifdef HAVE_NEW_GUI
       if ( ( use_gui )&&( cmd->id > MP_CMD_GUI_EVENTS ) ) guiGetEvent( guiIEvent,(char *)cmd->id );


More information about the MPlayer-dev-eng mailing list