Mercurial > mplayer.hg
annotate libmenu/vf_menu.c @ 25066:89c42f6f6e89
(cosmetics) Indentation fix of previous commit.
author | voroshil |
---|---|
date | Sun, 18 Nov 2007 11:15:14 +0000 |
parents | afead6ecb8ba |
children | e82ecde2cbd4 |
rev | line source |
---|---|
8197 | 1 |
16862 | 2 #include "config.h" |
17994
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17945
diff
changeset
|
3 #include "mp_msg.h" |
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17945
diff
changeset
|
4 #include "help_mp.h" |
8197 | 5 |
6 #include <stdio.h> | |
7 #include <stdlib.h> | |
8 #include <string.h> | |
9 | |
8623
440301fef3fe
Added/reordered #includes to silence warnings about "implicit declaration".
rathann
parents:
8251
diff
changeset
|
10 #ifdef HAVE_MALLOC_H |
440301fef3fe
Added/reordered #includes to silence warnings about "implicit declaration".
rathann
parents:
8251
diff
changeset
|
11 #include <malloc.h> |
440301fef3fe
Added/reordered #includes to silence warnings about "implicit declaration".
rathann
parents:
8251
diff
changeset
|
12 #endif |
8197 | 13 |
23338
2a66d95355f0
add new -subfont option, that allows having a different font for OSD (controls and menu) and subtitles
ben
parents:
22284
diff
changeset
|
14 #include "mplayer.h" |
16862 | 15 #include "mp_msg.h" |
8197 | 16 |
16862 | 17 #include "libmpcodecs/img_format.h" |
18 #include "libmpcodecs/mp_image.h" | |
19 #include "libmpcodecs/vf.h" | |
8197 | 20 |
16862 | 21 #include "libvo/fastmemcpy.h" |
22 #include "libvo/video_out.h" | |
23 #include "libvo/font_load.h" | |
25026
afead6ecb8ba
Remove the pause filter and the cmd queue hack, to know the mplayer going to
ulion
parents:
24960
diff
changeset
|
24 #include "libvo/sub.h" |
16862 | 25 #include "input/input.h" |
26 #include "m_struct.h" | |
8197 | 27 #include "menu.h" |
22284 | 28 #include "access_mpcontext.h" |
8197 | 29 |
30 | |
31 static struct vf_priv_s* st_priv = NULL; | |
32 | |
33 static mp_image_t* pause_mpi = NULL; | |
34 static int go2pause = 0; | |
13344
0d96af97ec00
option to display menu at startup, patch by Aurelien Jacobs <aurel at gnuage.org>
faust3
parents:
10397
diff
changeset
|
35 /// if nonzero display menu at startup |
13528 | 36 int attribute_used menu_startup = 0; |
8197 | 37 |
38 struct vf_priv_s { | |
39 menu_t* root; | |
40 menu_t* current; | |
21803
3acc4b00bcc6
allows OSD menu to be displayed when using MPEG PES video out
ben
parents:
19489
diff
changeset
|
41 int passthrough; |
8197 | 42 }; |
43 | |
17908 | 44 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts); |
8197 | 45 |
46 void vf_menu_pause_update(struct vf_instance_s* vf) { | |
22284 | 47 vo_functions_t *video_out = mpctx_get_video_out(vf->priv->current->ctx); |
8197 | 48 if(pause_mpi) { |
17908 | 49 put_image(vf,pause_mpi, MP_NOPTS_VALUE); |
8197 | 50 // Don't draw the osd atm |
51 //vf->control(vf,VFCTRL_DRAW_OSD,NULL); | |
52 video_out->flip_page(); | |
53 } | |
54 } | |
55 | |
56 static int cmd_filter(mp_cmd_t* cmd, int paused, struct vf_priv_s * priv) { | |
57 | |
58 switch(cmd->id) { | |
59 case MP_CMD_MENU : { // Convert txt cmd from the users into libmenu stuff | |
60 char* arg = cmd->args[0].v.s; | |
61 | |
19489 | 62 if(!priv->current->show && !(strcmp(arg,"hide") == 0) ) |
8197 | 63 priv->current->show = 1; |
64 else if(strcmp(arg,"up") == 0) | |
65 menu_read_cmd(priv->current,MENU_CMD_UP); | |
66 else if(strcmp(arg,"down") == 0) | |
67 menu_read_cmd(priv->current,MENU_CMD_DOWN); | |
17945
98f4e3704a76
Allow 6 ways (up/down/left/right/ok/cancel) navigation.
albeu
parents:
17908
diff
changeset
|
68 else if(strcmp(arg,"left") == 0) |
98f4e3704a76
Allow 6 ways (up/down/left/right/ok/cancel) navigation.
albeu
parents:
17908
diff
changeset
|
69 menu_read_cmd(priv->current,MENU_CMD_LEFT); |
98f4e3704a76
Allow 6 ways (up/down/left/right/ok/cancel) navigation.
albeu
parents:
17908
diff
changeset
|
70 else if(strcmp(arg,"right") == 0) |
98f4e3704a76
Allow 6 ways (up/down/left/right/ok/cancel) navigation.
albeu
parents:
17908
diff
changeset
|
71 menu_read_cmd(priv->current,MENU_CMD_RIGHT); |
8197 | 72 else if(strcmp(arg,"ok") == 0) |
73 menu_read_cmd(priv->current,MENU_CMD_OK); | |
74 else if(strcmp(arg,"cancel") == 0) | |
75 menu_read_cmd(priv->current,MENU_CMD_CANCEL); | |
19489 | 76 else if(strcmp(arg,"hide") == 0 || strcmp(arg,"toggle") == 0) |
8197 | 77 priv->current->show = 0; |
78 else | |
17994
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17945
diff
changeset
|
79 mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_UnknownMenuCommand,arg); |
8197 | 80 return 1; |
81 } | |
82 case MP_CMD_SET_MENU : { | |
83 char* menu = cmd->args[0].v.s; | |
84 menu_t* l = priv->current; | |
85 priv->current = menu_open(menu); | |
86 if(!priv->current) { | |
17994
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17945
diff
changeset
|
87 mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_FailedToOpenMenu,menu); |
8197 | 88 priv->current = l; |
89 priv->current->show = 0; | |
90 } else { | |
91 priv->current->show = 1; | |
92 priv->current->parent = l; | |
93 } | |
94 return 1; | |
95 } | |
96 } | |
97 return 0; | |
98 } | |
99 | |
100 static void get_image(struct vf_instance_s* vf, mp_image_t *mpi){ | |
101 mp_image_t *dmpi; | |
102 | |
103 if(mpi->type == MP_IMGTYPE_TEMP && (!(mpi->flags&MP_IMGFLAG_PRESERVE)) ) { | |
104 dmpi = vf_get_image(vf->next,mpi->imgfmt,mpi->type, mpi->flags, mpi->w, mpi->h); | |
23458
973e53dc7df5
Do not use fast_memcpy for small size copy, esp. when the size is constant
reimar
parents:
23457
diff
changeset
|
105 memcpy(mpi->planes,dmpi->planes,MP_MAX_PLANES*sizeof(unsigned char*)); |
973e53dc7df5
Do not use fast_memcpy for small size copy, esp. when the size is constant
reimar
parents:
23457
diff
changeset
|
106 memcpy(mpi->stride,dmpi->stride,MP_MAX_PLANES*sizeof(unsigned int)); |
8197 | 107 mpi->flags|=MP_IMGFLAG_DIRECT; |
108 mpi->priv=(void*)dmpi; | |
109 return; | |
110 } | |
111 } | |
112 | |
113 static void key_cb(int code) { | |
114 menu_read_key(st_priv->current,code); | |
115 } | |
116 | |
17908 | 117 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){ |
8197 | 118 mp_image_t *dmpi = NULL; |
119 | |
21803
3acc4b00bcc6
allows OSD menu to be displayed when using MPEG PES video out
ben
parents:
19489
diff
changeset
|
120 if (vf->priv->passthrough) { |
3acc4b00bcc6
allows OSD menu to be displayed when using MPEG PES video out
ben
parents:
19489
diff
changeset
|
121 dmpi=vf_get_image(vf->next, IMGFMT_MPEGPES, MP_IMGTYPE_EXPORT, |
3acc4b00bcc6
allows OSD menu to be displayed when using MPEG PES video out
ben
parents:
19489
diff
changeset
|
122 0, mpi->w, mpi->h); |
3acc4b00bcc6
allows OSD menu to be displayed when using MPEG PES video out
ben
parents:
19489
diff
changeset
|
123 dmpi->planes[0]=mpi->planes[0]; |
3acc4b00bcc6
allows OSD menu to be displayed when using MPEG PES video out
ben
parents:
19489
diff
changeset
|
124 return vf_next_put_image(vf,dmpi, pts); |
3acc4b00bcc6
allows OSD menu to be displayed when using MPEG PES video out
ben
parents:
19489
diff
changeset
|
125 } |
3acc4b00bcc6
allows OSD menu to be displayed when using MPEG PES video out
ben
parents:
19489
diff
changeset
|
126 |
8197 | 127 // Close all menu who requested it |
128 while(vf->priv->current->cl && vf->priv->current != vf->priv->root) { | |
129 menu_t* m = vf->priv->current; | |
130 vf->priv->current = m->parent ? m->parent : vf->priv->root; | |
131 menu_close(m); | |
132 } | |
133 | |
25026
afead6ecb8ba
Remove the pause filter and the cmd queue hack, to know the mplayer going to
ulion
parents:
24960
diff
changeset
|
134 // Try to capture the last frame before pause, or fallback to use |
afead6ecb8ba
Remove the pause filter and the cmd queue hack, to know the mplayer going to
ulion
parents:
24960
diff
changeset
|
135 // last captured frame. |
8197 | 136 if(pause_mpi && (mpi->w != pause_mpi->w || mpi->h != pause_mpi->h || |
137 mpi->imgfmt != pause_mpi->imgfmt)) { | |
138 free_mp_image(pause_mpi); | |
139 pause_mpi = NULL; | |
140 } | |
25026
afead6ecb8ba
Remove the pause filter and the cmd queue hack, to know the mplayer going to
ulion
parents:
24960
diff
changeset
|
141 if (!pause_mpi) { |
afead6ecb8ba
Remove the pause filter and the cmd queue hack, to know the mplayer going to
ulion
parents:
24960
diff
changeset
|
142 pause_mpi = alloc_mpi(mpi->w,mpi->h,mpi->imgfmt); |
8197 | 143 copy_mpi(pause_mpi,mpi); |
144 } | |
25026
afead6ecb8ba
Remove the pause filter and the cmd queue hack, to know the mplayer going to
ulion
parents:
24960
diff
changeset
|
145 else if (mpctx_get_osd_function(vf->priv->root->ctx) == OSD_PAUSE) |
afead6ecb8ba
Remove the pause filter and the cmd queue hack, to know the mplayer going to
ulion
parents:
24960
diff
changeset
|
146 copy_mpi(pause_mpi,mpi); |
8197 | 147 |
25026
afead6ecb8ba
Remove the pause filter and the cmd queue hack, to know the mplayer going to
ulion
parents:
24960
diff
changeset
|
148 if (vf->priv->current->show) { |
afead6ecb8ba
Remove the pause filter and the cmd queue hack, to know the mplayer going to
ulion
parents:
24960
diff
changeset
|
149 if (!mp_input_key_cb) |
afead6ecb8ba
Remove the pause filter and the cmd queue hack, to know the mplayer going to
ulion
parents:
24960
diff
changeset
|
150 mp_input_key_cb = key_cb; |
8197 | 151 |
152 if(mpi->flags&MP_IMGFLAG_DIRECT) | |
153 dmpi = mpi->priv; | |
154 else { | |
155 dmpi = vf_get_image(vf->next,mpi->imgfmt, | |
156 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, | |
157 mpi->w,mpi->h); | |
158 copy_mpi(dmpi,mpi); | |
159 } | |
160 menu_draw(vf->priv->current,dmpi); | |
161 | |
8244
64352fb332b6
don't fully-copy the planes if the menu doesn't show (faster)
colin
parents:
8224
diff
changeset
|
162 } else { |
64352fb332b6
don't fully-copy the planes if the menu doesn't show (faster)
colin
parents:
8224
diff
changeset
|
163 if(mp_input_key_cb) |
64352fb332b6
don't fully-copy the planes if the menu doesn't show (faster)
colin
parents:
8224
diff
changeset
|
164 mp_input_key_cb = NULL; |
21924
422eef67d14a
speeds up mplayer execution by over FIVE times when all of the of the following apply:
gpoirier
parents:
21818
diff
changeset
|
165 |
422eef67d14a
speeds up mplayer execution by over FIVE times when all of the of the following apply:
gpoirier
parents:
21818
diff
changeset
|
166 if(mpi->flags&MP_IMGFLAG_DIRECT) |
422eef67d14a
speeds up mplayer execution by over FIVE times when all of the of the following apply:
gpoirier
parents:
21818
diff
changeset
|
167 dmpi = mpi->priv; |
422eef67d14a
speeds up mplayer execution by over FIVE times when all of the of the following apply:
gpoirier
parents:
21818
diff
changeset
|
168 else { |
21925 | 169 dmpi = vf_get_image(vf->next,mpi->imgfmt, |
170 MP_IMGTYPE_EXPORT, MP_IMGFLAG_ACCEPT_STRIDE, | |
171 mpi->w,mpi->h); | |
8244
64352fb332b6
don't fully-copy the planes if the menu doesn't show (faster)
colin
parents:
8224
diff
changeset
|
172 |
21925 | 173 dmpi->stride[0] = mpi->stride[0]; |
174 dmpi->stride[1] = mpi->stride[1]; | |
175 dmpi->stride[2] = mpi->stride[2]; | |
176 dmpi->planes[0] = mpi->planes[0]; | |
177 dmpi->planes[1] = mpi->planes[1]; | |
178 dmpi->planes[2] = mpi->planes[2]; | |
179 dmpi->priv = mpi->priv; | |
180 } | |
21924
422eef67d14a
speeds up mplayer execution by over FIVE times when all of the of the following apply:
gpoirier
parents:
21818
diff
changeset
|
181 } |
17908 | 182 return vf_next_put_image(vf,dmpi, pts); |
8197 | 183 } |
184 | |
185 static void uninit(vf_instance_t *vf) { | |
186 vf->priv=NULL; | |
187 if(pause_mpi) { | |
188 free_mp_image(pause_mpi); | |
189 pause_mpi = NULL; | |
190 } | |
191 } | |
192 | |
8224
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
193 static int config(struct vf_instance_s* vf, int width, int height, int d_width, int d_height, |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
194 unsigned int flags, unsigned int outfmt) { |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
195 #ifdef HAVE_FREETYPE |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
196 // here is the right place to get screen dimensions |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
197 if (force_load_font) { |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
198 force_load_font = 0; |
23338
2a66d95355f0
add new -subfont option, that allows having a different font for OSD (controls and menu) and subtitles
ben
parents:
22284
diff
changeset
|
199 load_font_ft(width,height,&vo_font,font_name); |
8224
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
200 } |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
201 #endif |
21803
3acc4b00bcc6
allows OSD menu to be displayed when using MPEG PES video out
ben
parents:
19489
diff
changeset
|
202 if(outfmt == IMGFMT_MPEGPES) |
3acc4b00bcc6
allows OSD menu to be displayed when using MPEG PES video out
ben
parents:
19489
diff
changeset
|
203 vf->priv->passthrough = 1; |
8224
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
204 return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt); |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
205 } |
21803
3acc4b00bcc6
allows OSD menu to be displayed when using MPEG PES video out
ben
parents:
19489
diff
changeset
|
206 |
3acc4b00bcc6
allows OSD menu to be displayed when using MPEG PES video out
ben
parents:
19489
diff
changeset
|
207 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ |
3acc4b00bcc6
allows OSD menu to be displayed when using MPEG PES video out
ben
parents:
19489
diff
changeset
|
208 return (vf_next_query_format(vf,fmt)); |
3acc4b00bcc6
allows OSD menu to be displayed when using MPEG PES video out
ben
parents:
19489
diff
changeset
|
209 } |
3acc4b00bcc6
allows OSD menu to be displayed when using MPEG PES video out
ben
parents:
19489
diff
changeset
|
210 |
23366
b344b6520518
rename some menu open functions, to avoid confusion with libc native open()
ben
parents:
23338
diff
changeset
|
211 static int open_vf(vf_instance_t *vf, char* args){ |
8197 | 212 if(!st_priv) { |
213 st_priv = calloc(1,sizeof(struct vf_priv_s)); | |
214 st_priv->root = st_priv->current = menu_open(args); | |
215 if(!st_priv->current) { | |
216 free(st_priv); | |
217 st_priv = NULL; | |
218 return 0; | |
219 } | |
13344
0d96af97ec00
option to display menu at startup, patch by Aurelien Jacobs <aurel at gnuage.org>
faust3
parents:
10397
diff
changeset
|
220 st_priv->root->show = menu_startup; |
8197 | 221 mp_input_add_cmd_filter((mp_input_cmd_filter)cmd_filter,st_priv); |
222 } | |
223 | |
8224
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
224 vf->config = config; |
21803
3acc4b00bcc6
allows OSD menu to be displayed when using MPEG PES video out
ben
parents:
19489
diff
changeset
|
225 vf->query_format=query_format; |
8197 | 226 vf->put_image = put_image; |
227 vf->get_image = get_image; | |
228 vf->uninit=uninit; | |
229 vf->priv=st_priv; | |
230 go2pause=0; | |
231 | |
232 return 1; | |
233 } | |
234 | |
235 | |
236 vf_info_t vf_info_menu = { | |
237 "Internal filter for libmenu", | |
238 "menu", | |
239 "Albeu", | |
240 "", | |
23366
b344b6520518
rename some menu open functions, to avoid confusion with libc native open()
ben
parents:
23338
diff
changeset
|
241 open_vf, |
9755 | 242 NULL |
8197 | 243 }; |
244 | |
245 | |
246 |