Mercurial > mplayer.hg
annotate gui/interface.c @ 34052:9f19a87d2062
Remove gui() instruction GUI_SET_FILE.
Move the preparation part to GUI_PREPARE and the part
resetting variable guiInfo.sh_video to GUI_END_FILE.
author | ib |
---|---|
date | Tue, 27 Sep 2011 14:15:42 +0000 |
parents | 5daa51a194ed |
children | 19e2b5682587 |
rev | line source |
---|---|
26458 | 1 /* |
2 * This file is part of MPlayer. | |
3 * | |
4 * MPlayer is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; either version 2 of the License, or | |
7 * (at your option) any later version. | |
8 * | |
9 * MPlayer is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License along | |
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
17 */ | |
23077 | 18 |
33754 | 19 #include <stdarg.h> |
20 #include <stdio.h> | |
23077 | 21 #include <stdlib.h> |
22 #include <string.h> | |
23 | |
32984 | 24 #include "interface.h" |
25 #include "app.h" | |
26 #include "skin/skin.h" | |
33556 | 27 #include "ui/gmplayer.h" |
28 #include "ui/widgets.h" | |
33741 | 29 #include "util/list.h" |
33739 | 30 #include "util/mem.h" |
33737 | 31 #include "util/string.h" |
23077 | 32 #include "wm/ws.h" |
33 #include "wm/wsxdnd.h" | |
34 | |
35 #include "access_mpcontext.h" | |
32984 | 36 #include "config.h" |
23077 | 37 #include "help_mp.h" |
32984 | 38 #include "input/input.h" |
39 #include "libaf/equalizer.h" | |
33689
8d0290220239
Replace numeric constants for gtkEquChannels array size.
ib
parents:
33688
diff
changeset
|
40 #include "libavutil/common.h" |
32984 | 41 #include "libmpcodecs/dec_audio.h" |
42 #include "libmpcodecs/dec_video.h" | |
43 #include "libmpcodecs/vd.h" | |
44 #include "libmpcodecs/vf.h" | |
33398 | 45 #include "libvo/video_out.h" |
32984 | 46 #include "libvo/x11_common.h" |
47 #include "mixer.h" | |
48 #include "mp_msg.h" | |
32032 | 49 #include "mpcommon.h" |
30536
39a4dd7ec420
Move GUI-related extern declarations to a GUI header file.
diego
parents:
30535
diff
changeset
|
50 #include "mplayer.h" |
32984 | 51 #include "path.h" |
32466
9e627a1793b1
Move font_load.[ch], font_load_ft.c and osd_font.h from libvo to sub.
cigaes
parents:
32461
diff
changeset
|
52 #include "sub/font_load.h" |
32467 | 53 #include "sub/sub.h" |
23077 | 54 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
55 #ifdef CONFIG_DVDREAD |
23077 | 56 #include "stream/stream_dvd.h" |
57 #endif | |
58 | |
33662 | 59 guiInterface_t guiInfo = { |
33961 | 60 .StreamType = STREAMTYPE_DUMMY, |
61 .Balance = 50.0f | |
33662 | 62 }; |
23077 | 63 |
33265 | 64 static int initialized; |
65 | |
33745 | 66 /* MPlayer -> GUI */ |
67 | |
32984 | 68 void guiInit(void) |
23077 | 69 { |
32984 | 70 int i; |
23077 | 71 |
33530 | 72 mp_msg(MSGT_GPLAYER, MSGL_V, "GUI init.\n"); |
73 | |
32984 | 74 #ifdef CONFIG_DXR3 |
75 if (!gtkDXR3Device) | |
76 gtkDXR3Device = strdup("/dev/em8300-0"); | |
77 #endif | |
32927 | 78 |
32984 | 79 if (stream_cache_size > 0) { |
80 gtkCacheOn = 1; | |
81 gtkCacheSize = stream_cache_size; | |
82 } else if (stream_cache_size == 0) | |
83 gtkCacheOn = 0; | |
84 | |
85 if (autosync && (autosync != gtkAutoSync)) { | |
86 gtkAutoSyncOn = 1; | |
87 gtkAutoSync = autosync; | |
88 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
89 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
90 #ifdef CONFIG_ASS |
32984 | 91 gtkASS.enabled = ass_enabled; |
92 gtkASS.use_margins = ass_use_margins; | |
93 gtkASS.top_margin = ass_top_margin; | |
94 gtkASS.bottom_margin = ass_bottom_margin; | |
23077 | 95 #endif |
96 | |
32984 | 97 gtkInit(); |
98 | |
99 // initialize X | |
33463 | 100 wsXInit(mDisplay); |
32984 | 101 |
102 // load skin | |
103 | |
104 skinDirInHome = get_path("skins"); | |
105 skinMPlayerDir = MPLAYER_DATADIR "/skins"; | |
106 | |
33985 | 107 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] skin directory #1: %s\n", skinDirInHome); |
108 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] skin directory #2: %s\n", skinMPlayerDir); | |
32984 | 109 |
110 if (!skinName) | |
111 skinName = strdup("default"); | |
112 | |
113 i = skinRead(skinName); | |
114 | |
115 if (i == -1 && strcmp(skinName, "default") != 0) { | |
116 mp_msg(MSGT_GPLAYER, MSGL_WARN, MSGTR_SKIN_SKINCFG_SelectedSkinNotFound, skinName); | |
117 | |
118 skinName = strdup("default"); | |
119 i = skinRead(skinName); | |
120 } | |
121 | |
122 switch (i) { | |
123 case -1: | |
33024 | 124 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_SKIN_SKINCFG_SkinNotFound, skinName); |
33768 | 125 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); |
23077 | 126 |
32984 | 127 case -2: |
33025 | 128 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_SKIN_SKINCFG_SkinCfgError, skinName); |
33768 | 129 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); |
32984 | 130 } |
131 | |
132 // initialize windows | |
133 | |
33555 | 134 mainDrawBuffer = malloc(guiApp.main.Bitmap.ImageSize); |
32984 | 135 |
33555 | 136 if (!mainDrawBuffer) { |
33024 | 137 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_NEMDB); |
33768 | 138 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); |
32984 | 139 } |
23077 | 140 |
32984 | 141 if (gui_save_pos) { |
33218
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33053
diff
changeset
|
142 if (gui_main_pos_x != -3) |
33555 | 143 guiApp.main.x = gui_main_pos_x; |
33218
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33053
diff
changeset
|
144 if (gui_main_pos_y != -3) |
33555 | 145 guiApp.main.y = gui_main_pos_y; |
33218
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33053
diff
changeset
|
146 if (gui_sub_pos_x != -3) |
33555 | 147 guiApp.sub.x = gui_sub_pos_x; |
33218
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33053
diff
changeset
|
148 if (gui_sub_pos_y != -3) |
33555 | 149 guiApp.sub.y = gui_sub_pos_y; |
32984 | 150 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
151 |
32984 | 152 if (WinID > 0) { |
33555 | 153 guiApp.subWindow.Parent = WinID; |
154 guiApp.sub.x = 0; | |
155 guiApp.sub.y = 0; | |
32984 | 156 } |
23077 | 157 |
32984 | 158 if (guiWinID >= 0) |
33555 | 159 guiApp.mainWindow.Parent = guiWinID; |
23077 | 160 |
33555 | 161 wsCreateWindow(&guiApp.subWindow, guiApp.sub.x, guiApp.sub.y, guiApp.sub.width, guiApp.sub.height, wsNoBorder, wsShowMouseCursor | wsHandleMouseButton | wsHandleMouseMove, wsShowFrame | wsHideWindow, "MPlayer - Video"); |
162 wsDestroyImage(&guiApp.subWindow); | |
163 wsCreateImage(&guiApp.subWindow, guiApp.sub.Bitmap.Width, guiApp.sub.Bitmap.Height); | |
164 wsXDNDMakeAwareness(&guiApp.subWindow); | |
32984 | 165 |
33958 | 166 WinID = guiApp.subWindow.WindowID; |
167 | |
33555 | 168 uiMenuInit(); |
169 uiPlaybarInit(); | |
23077 | 170 |
171 // i=wsHideFrame|wsMaxSize|wsHideWindow; | |
33555 | 172 // if ( guiApp.mainDecoration ) i=wsShowFrame|wsMaxSize|wsHideWindow; |
32984 | 173 i = wsShowFrame | wsMaxSize | wsHideWindow; |
33555 | 174 wsCreateWindow(&guiApp.mainWindow, guiApp.main.x, guiApp.main.y, guiApp.main.width, guiApp.main.height, wsNoBorder, wsShowMouseCursor | wsHandleMouseButton | wsHandleMouseMove, i, "MPlayer"); |
175 wsSetShape(&guiApp.mainWindow, guiApp.main.Mask.Image); | |
176 wsXDNDMakeAwareness(&guiApp.mainWindow); | |
23077 | 177 |
33985 | 178 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] screen depth: %d\n", wsDepthOnScreen); |
179 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] mainWindow ID: 0x%x\n", (int)guiApp.mainWindow.WindowID); | |
180 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] subWindow ID: 0x%x\n", (int)guiApp.subWindow.WindowID); | |
23077 | 181 |
33555 | 182 guiApp.mainWindow.ReDraw = (void *)uiMainDraw; |
183 guiApp.mainWindow.MouseHandler = uiMainMouseHandle; | |
184 guiApp.mainWindow.KeyHandler = uiMainKeyHandle; | |
185 guiApp.mainWindow.DandDHandler = uiDandDHandler; | |
32984 | 186 |
33555 | 187 guiApp.subWindow.ReDraw = (void *)uiSubDraw; |
188 guiApp.subWindow.MouseHandler = uiSubMouseHandle; | |
189 guiApp.subWindow.KeyHandler = uiMainKeyHandle; | |
190 guiApp.subWindow.DandDHandler = uiDandDHandler; | |
23077 | 191 |
33555 | 192 wsSetBackgroundRGB(&guiApp.subWindow, guiApp.sub.R, guiApp.sub.G, guiApp.sub.B); |
193 wsClearWindow(guiApp.subWindow); | |
23077 | 194 |
33555 | 195 if (guiApp.sub.Bitmap.Image) |
196 wsConvert(&guiApp.subWindow, guiApp.sub.Bitmap.Image); | |
32984 | 197 |
33555 | 198 btnModify(evSetVolume, guiInfo.Volume); |
199 btnModify(evSetBalance, guiInfo.Balance); | |
200 btnModify(evSetMoviePosition, guiInfo.Position); | |
23077 | 201 |
33555 | 202 wsSetIcon(wsDisplay, guiApp.mainWindow.WindowID, &guiIcon); |
203 wsSetIcon(wsDisplay, guiApp.subWindow.WindowID, &guiIcon); | |
32984 | 204 |
33555 | 205 if (!guiApp.mainDecoration) |
206 wsWindowDecoration(&guiApp.mainWindow, 0); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
207 |
33555 | 208 wsVisibleWindow(&guiApp.mainWindow, wsShowWindow); |
23077 | 209 |
32984 | 210 if (gtkShowVideoWindow) { |
33555 | 211 wsVisibleWindow(&guiApp.subWindow, wsShowWindow); |
33960 | 212 |
32984 | 213 { |
214 XEvent xev; | |
215 | |
216 do | |
217 XNextEvent(wsDisplay, &xev); | |
33555 | 218 while (xev.type != MapNotify || xev.xmap.event != guiApp.subWindow.WindowID); |
32984 | 219 |
33555 | 220 guiApp.subWindow.Mapped = wsMapped; |
33960 | 221 guiInfo.VideoWindow = True; |
32984 | 222 } |
23077 | 223 |
33960 | 224 if (gtkLoadFullscreen) |
33555 | 225 uiFullScreen(); |
33960 | 226 } else |
227 wsSetBackgroundRGB(&guiApp.subWindow, 0, 0, 0); | |
32984 | 228 |
33960 | 229 if (gtkLoadFullscreen) |
33978 | 230 btnSet(evFullScreen, btnPressed); |
32984 | 231 |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
232 guiInfo.Playing = GUI_STOP; |
33609 | 233 |
33555 | 234 uiSubRender = 1; |
32984 | 235 |
236 if (plCurrent && !filename) | |
33555 | 237 uiSetFileName(plCurrent->path, plCurrent->name, STREAMTYPE_FILE); |
32984 | 238 |
239 if (subdata) | |
33897 | 240 setdup(&guiInfo.SubtitleFilename, subdata->filename); |
32984 | 241 |
33763 | 242 mplayerLoadFont(); |
33265 | 243 |
244 initialized = 1; | |
23077 | 245 } |
246 | |
32984 | 247 void guiDone(void) |
23077 | 248 { |
33307 | 249 if (initialized) { |
33555 | 250 uiMainRender = 0; |
32984 | 251 |
33308 | 252 if (gui_save_pos) { |
33555 | 253 gui_main_pos_x = guiApp.mainWindow.X; |
254 gui_main_pos_y = guiApp.mainWindow.Y; | |
33942
afede91f9d5f
Don't use current x and y position of video window for saving.
ib
parents:
33903
diff
changeset
|
255 gui_sub_pos_x = guiApp.sub.x; |
afede91f9d5f
Don't use current x and y position of video window for saving.
ib
parents:
33903
diff
changeset
|
256 gui_sub_pos_y = guiApp.sub.y; |
33308 | 257 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
258 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
259 #ifdef CONFIG_ASS |
33308 | 260 ass_enabled = gtkASS.enabled; |
261 ass_use_margins = gtkASS.use_margins; | |
262 ass_top_margin = gtkASS.top_margin; | |
263 ass_bottom_margin = gtkASS.bottom_margin; | |
23077 | 264 #endif |
265 | |
33308 | 266 cfg_write(); |
267 wsXDone(); | |
33307 | 268 } |
33263 | 269 |
33307 | 270 appFreeStruct(); |
33542 | 271 free(guiIcon.collection); |
33307 | 272 |
273 if (gui_conf) { | |
274 m_config_free(gui_conf); | |
275 gui_conf = NULL; | |
276 } | |
33530 | 277 |
278 mp_msg(MSGT_GPLAYER, MSGL_V, "GUI done.\n"); | |
33263 | 279 } |
280 | |
32984 | 281 static void add_vf(char *str) |
23077 | 282 { |
32984 | 283 void *p; |
284 | |
285 if (vf_settings) { | |
286 int i = 0; | |
287 | |
288 while (vf_settings[i].name) { | |
289 if (!gstrcmp(vf_settings[i++].name, str)) { | |
290 i = -1; | |
291 break; | |
292 } | |
293 } | |
294 | |
295 if (i != -1) { | |
296 p = realloc(vf_settings, (i + 2) * sizeof(m_obj_settings_t)); | |
32712 | 297 |
32984 | 298 if (!p) |
299 return; | |
300 | |
301 vf_settings = p; | |
302 vf_settings[i].name = strdup(str); | |
303 vf_settings[i].attribs = NULL; | |
304 vf_settings[i + 1].name = NULL; | |
305 } | |
306 } else { | |
307 vf_settings = malloc(2 * sizeof(m_obj_settings_t)); | |
308 vf_settings[0].name = strdup(str); | |
309 vf_settings[0].attribs = NULL; | |
310 vf_settings[1].name = NULL; | |
32712 | 311 } |
312 | |
33530 | 313 mp_msg(MSGT_GPLAYER, MSGL_INFO, MSGTR_AddingVideoFilter, str); |
23077 | 314 } |
315 | |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
316 int gui(int what, void *data) |
23077 | 317 { |
32984 | 318 mixer_t *mixer = NULL; |
33685
ca6c9a80a062
Make assignments to variables in guiGetEvent() only if needed.
ib
parents:
33683
diff
changeset
|
319 stream_t *stream; |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
320 #ifdef CONFIG_DVDREAD |
33687 | 321 dvd_priv_t *dvd; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
322 #endif |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
323 plItem *next; |
23077 | 324 |
33555 | 325 if (guiInfo.mpcontext) |
326 mixer = mpctx_get_mixer(guiInfo.mpcontext); | |
23077 | 327 |
33726 | 328 switch (what) { |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
329 case GUI_SET_CONTEXT: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
330 guiInfo.mpcontext = data; |
23077 | 331 break; |
32984 | 332 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
333 case GUI_SET_STATE: |
32984 | 334 |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
335 switch ((int)data) { |
33631 | 336 case GUI_STOP: |
33614 | 337 case GUI_PLAY: |
33555 | 338 // if ( !gtkShowVideoWindow ) wsVisibleWindow( &guiApp.subWindow,wsHideWindow ); |
33614 | 339 case GUI_PAUSE: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
340 guiInfo.Playing = (int)data; |
32984 | 341 break; |
342 } | |
343 | |
33555 | 344 uiState(); |
23077 | 345 break; |
32984 | 346 |
33732 | 347 case GUI_HANDLE_EVENTS: |
33901 | 348 if (!guiInfo.Playing || !guiInfo.VideoWindow) |
33732 | 349 wsHandleEvents(); |
350 gtkEventHandling(); | |
351 break; | |
352 | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
353 case GUI_RUN_COMMAND: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
354 |
33985 | 355 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] GUI_RUN_COMMAND: %d\n", (int)data); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
356 |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
357 switch ((int)data) { |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
358 case MP_CMD_VO_FULLSCREEN: |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
359 uiEventHandling(evFullScreen, 0); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
360 break; |
33696
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
361 |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
362 case MP_CMD_PLAY_TREE_STEP: |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
363 uiEventHandling(evNext, 0); |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
364 break; |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
365 |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
366 case -MP_CMD_PLAY_TREE_STEP: |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
367 uiEventHandling(evPrev, 0); |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
368 break; |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
369 |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
370 case MP_CMD_STOP: |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
371 uiEventHandling(evStop, 0); |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
372 break; |
33697 | 373 |
374 case MP_CMD_QUIT: | |
375 uiEventHandling(evExit, 0); | |
376 break; | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
377 } |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
378 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
379 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
380 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
381 case GUI_PREPARE: |
32984 | 382 |
34052 | 383 wsVisibleMouse(&guiApp.subWindow, wsHideMouseCursor); |
32984 | 384 |
34052 | 385 if (guiInfo.NewPlay == GUI_FILE_NEW) { |
386 dvd_title = 0; | |
387 audio_id = -1; | |
388 video_id = -1; | |
389 dvdsub_id = -1; | |
390 vobsub_id = -1; | |
391 | |
392 stream_cache_size = -1; | |
393 autosync = 0; | |
394 force_fps = 0; | |
395 } | |
34032 | 396 |
33555 | 397 switch (guiInfo.StreamType) { |
32984 | 398 case STREAMTYPE_PLAYLIST: |
399 break; | |
400 | |
401 #ifdef CONFIG_VCD | |
402 case STREAMTYPE_VCD: | |
403 { | |
404 char tmp[512]; | |
405 | |
33874 | 406 sprintf(tmp, "vcd://%d", guiInfo.Track); |
33740
2c02269701bd
Remove macros guiSetFilename() and guiSetDF() from interface.h.
ib
parents:
33739
diff
changeset
|
407 setdup(&guiInfo.Filename, tmp); |
32984 | 408 } |
409 break; | |
410 #endif | |
411 | |
412 #ifdef CONFIG_DVDREAD | |
413 case STREAMTYPE_DVD: | |
414 { | |
415 char tmp[512]; | |
416 | |
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
417 sprintf(tmp, "dvd://%d", guiInfo.Track); |
33740
2c02269701bd
Remove macros guiSetFilename() and guiSetDF() from interface.h.
ib
parents:
33739
diff
changeset
|
418 setdup(&guiInfo.Filename, tmp); |
32984 | 419 } |
420 | |
33555 | 421 dvd_chapter = guiInfo.Chapter; |
422 dvd_angle = guiInfo.Angle; | |
32984 | 423 |
424 break; | |
425 #endif | |
426 } | |
427 | |
33555 | 428 // if ( guiInfo.StreamType != STREAMTYPE_PLAYLIST ) // Does not make problems anymore! |
32984 | 429 { |
33555 | 430 if (guiInfo.Filename) |
431 filename = gstrdup(guiInfo.Filename); | |
32984 | 432 else if (filename) |
33740
2c02269701bd
Remove macros guiSetFilename() and guiSetDF() from interface.h.
ib
parents:
33739
diff
changeset
|
433 setdup(&guiInfo.Filename, filename); |
32984 | 434 } |
435 | |
436 // video opts | |
437 | |
438 if (!video_driver_list) { | |
439 int i = 0; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
440 |
32984 | 441 while (video_out_drivers[i++]) { |
442 if (video_out_drivers[i - 1]->control(VOCTRL_GUISUPPORT, NULL) == VO_TRUE) { | |
443 gaddlist(&video_driver_list, (char *)video_out_drivers[i - 1]->info->short_name); | |
444 break; | |
445 } | |
446 } | |
447 } | |
448 | |
449 if (!video_driver_list && !video_driver_list[0]) { | |
33024 | 450 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_IDFGCVD); |
33768 | 451 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); |
32984 | 452 } |
453 | |
454 { | |
455 int i = 0; | |
456 | |
33901 | 457 guiInfo.VideoWindow = True; |
32984 | 458 |
459 while (video_out_drivers[i++]) { | |
460 if (video_out_drivers[i - 1]->control(VOCTRL_GUISUPPORT, NULL) == VO_TRUE) { | |
461 if ((video_driver_list && !gstrcmp(video_driver_list[0], (char *)video_out_drivers[i - 1]->info->short_name)) && (video_out_drivers[i - 1]->control(VOCTRL_GUI_NOWINDOW, NULL) == VO_TRUE)) { | |
33901 | 462 guiInfo.VideoWindow = False; |
32984 | 463 break; |
464 } | |
465 } | |
466 } | |
467 } | |
468 | |
469 #ifdef CONFIG_DXR3 | |
470 if (video_driver_list && !gstrcmp(video_driver_list[0], "dxr3")) | |
33555 | 471 if (guiInfo.StreamType != STREAMTYPE_DVD && guiInfo.StreamType != STREAMTYPE_VCD) |
32984 | 472 if (gtkVfLAVC) |
473 add_vf("lavc"); | |
474 #endif | |
475 | |
476 if (gtkVfPP) | |
477 add_vf("pp"); | |
478 | |
479 // audio opts | |
480 | |
481 // if ( ao_plugin_cfg.plugin_list ) { free( ao_plugin_cfg.plugin_list ); ao_plugin_cfg.plugin_list=NULL; } | |
482 if (gtkAONorm) | |
483 greplace(&af_cfg.list, "volnorm", "volnorm"); | |
484 | |
485 if (gtkEnableAudioEqualizer) | |
486 greplace(&af_cfg.list, "equalizer", "equalizer"); | |
487 | |
488 if (gtkAOExtraStereo) { | |
489 char *name; | |
490 | |
491 name = malloc(12 + 20 + 1); | |
492 snprintf(name, 12 + 20, "extrastereo=%f", gtkAOExtraStereoMul); | |
493 name[12 + 20] = 0; | |
494 greplace(&af_cfg.list, "extrastereo", name); | |
495 free(name); | |
496 } | |
497 | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
498 #ifdef CONFIG_OSS_AUDIO |
32984 | 499 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "oss", 3)) { |
500 char *tmp; | |
501 | |
502 mixer_device = gtkAOOSSMixer; | |
503 mixer_channel = gtkAOOSSMixerChannel; | |
504 | |
505 if (gtkAOOSSDevice) { | |
506 tmp = calloc(1, strlen(gtkAOOSSDevice) + 7); | |
507 sprintf(tmp, "oss:%s", gtkAOOSSDevice); | |
508 } else | |
509 tmp = strdup("oss"); | |
510 | |
511 gaddlist(&audio_driver_list, tmp); | |
512 free(tmp); | |
513 } | |
23077 | 514 #endif |
32984 | 515 |
27390
9d95dc936e66
Introduce CONFIG_ALSA preprocessor directive for ALSA 0.9 and 1.x.
diego
parents:
27387
diff
changeset
|
516 #ifdef CONFIG_ALSA |
32984 | 517 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "alsa", 4)) { |
518 char *tmp; | |
519 | |
520 mixer_device = gtkAOALSAMixer; | |
521 mixer_channel = gtkAOALSAMixerChannel; | |
522 | |
523 if (gtkAOALSADevice) { | |
524 tmp = calloc(1, strlen(gtkAOALSADevice) + 14); | |
525 sprintf(tmp, "alsa:device=%s", gtkAOALSADevice); | |
526 } else | |
527 tmp = strdup("alsa"); | |
528 | |
529 gaddlist(&audio_driver_list, tmp); | |
530 free(tmp); | |
531 } | |
23077 | 532 #endif |
32984 | 533 |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
534 #ifdef CONFIG_SDL |
32984 | 535 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "sdl", 3)) { |
536 char *tmp; | |
537 | |
538 if (gtkAOSDLDriver) { | |
539 tmp = calloc(1, strlen(gtkAOSDLDriver) + 10); | |
540 sprintf(tmp, "sdl:%s", gtkAOSDLDriver); | |
541 } else | |
542 tmp = strdup("sdl"); | |
543 | |
544 gaddlist(&audio_driver_list, tmp); | |
545 free(tmp); | |
546 } | |
23077 | 547 #endif |
32984 | 548 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
549 #ifdef CONFIG_ESD |
32984 | 550 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "esd", 3)) { |
551 char *tmp; | |
552 | |
553 if (gtkAOESDDevice) { | |
554 tmp = calloc(1, strlen(gtkAOESDDevice) + 10); | |
555 sprintf(tmp, "esd:%s", gtkAOESDDevice); | |
556 } else | |
557 tmp = strdup("esd"); | |
558 | |
559 gaddlist(&audio_driver_list, tmp); | |
560 free(tmp); | |
561 } | |
23077 | 562 #endif |
32984 | 563 |
564 // subtitle | |
565 | |
33897 | 566 // subdata->filename=gstrdup( guiInfo.SubtitleFilename ); |
32984 | 567 stream_dump_type = 0; |
568 | |
569 if (gtkSubDumpMPSub) | |
570 stream_dump_type = 4; | |
571 | |
572 if (gtkSubDumpSrt) | |
573 stream_dump_type = 6; | |
574 | |
575 gtkSubDumpMPSub = gtkSubDumpSrt = 0; | |
33763 | 576 mplayerLoadFont(); |
23077 | 577 |
32984 | 578 // misc |
579 | |
580 if (gtkCacheOn) | |
581 stream_cache_size = gtkCacheSize; | |
582 | |
583 if (gtkAutoSyncOn) | |
584 autosync = gtkAutoSync; | |
23077 | 585 |
33897 | 586 if (guiInfo.AudioFilename) |
587 audio_stream = gstrdup(guiInfo.AudioFilename); | |
33894 | 588 else if (guiInfo.NewPlay == GUI_FILE_NEW) |
33739 | 589 nfree(audio_stream); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
590 |
32984 | 591 // audio_stream = NULL; |
592 | |
33555 | 593 guiInfo.NewPlay = 0; |
23077 | 594 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
595 #ifdef CONFIG_ASS |
32984 | 596 ass_enabled = gtkASS.enabled; |
597 ass_use_margins = gtkASS.use_margins; | |
598 ass_top_margin = gtkASS.top_margin; | |
23077 | 599 ass_bottom_margin = gtkASS.bottom_margin; |
600 #endif | |
601 | |
32984 | 602 break; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
603 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
604 case GUI_SET_STREAM: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
605 |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
606 stream = data; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
607 guiInfo.StreamType = stream->type; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
608 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
609 switch (guiInfo.StreamType) { |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
610 #ifdef CONFIG_DVDREAD |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
611 case STREAMTYPE_DVD: |
33730 | 612 dvd = stream->priv; |
33903 | 613 guiInfo.Tracks = dvd->vmg_file->tt_srpt->nr_of_srpts; |
614 guiInfo.Chapters = dvd->vmg_file->tt_srpt->title[dvd_title].nr_of_ptts; | |
615 guiInfo.Angles = dvd->vmg_file->tt_srpt->title[dvd_title].nr_of_angles; | |
33902 | 616 guiInfo.AudioStreams = dvd->nr_of_channels; |
617 memcpy(guiInfo.AudioStream, dvd->audio_streams, sizeof(dvd->audio_streams)); | |
618 guiInfo.Subtitles = dvd->nr_of_subtitles; | |
619 memcpy(guiInfo.Subtitle, dvd->subtitles, sizeof(dvd->subtitles)); | |
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
620 guiInfo.Track = dvd_title + 1; |
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
621 guiInfo.Chapter = dvd_chapter + 1; |
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
622 guiInfo.Angle = dvd_angle + 1; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
623 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
624 #endif |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
625 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
626 #ifdef CONFIG_VCD |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
627 case STREAMTYPE_VCD: |
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
628 guiInfo.Tracks = 0; |
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
629 stream_control(stream, STREAM_CTRL_GET_NUM_CHAPTERS, &guiInfo.Tracks); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
630 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
631 #endif |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
632 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
633 default: |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
634 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
635 } |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
636 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
637 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
638 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
639 case GUI_SET_AFILTER: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
640 guiInfo.afilter = data; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
641 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
642 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
643 case GUI_SET_VIDEO: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
644 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
645 // video |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
646 |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
647 guiInfo.sh_video = data; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
648 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
649 if (guiInfo.StreamType == STREAMTYPE_STREAM) |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
650 btnSet(evSetMoviePosition, btnDisabled); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
651 else |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
652 btnSet(evSetMoviePosition, btnReleased); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
653 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
654 #ifdef CONFIG_DXR3 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
655 if (video_driver_list && !gstrcmp(video_driver_list[0], "dxr3") && (((demuxer_t *)mpctx_get_demuxer(guiInfo.mpcontext))->file_format != DEMUXER_TYPE_MPEG_PS) && !gtkVfLAVC) { |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
656 gtkMessageBox(GTK_MB_FATAL, MSGTR_NEEDLAVC); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
657 return False; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
658 } |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
659 #endif |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
660 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
661 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
662 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
663 case GUI_SET_AUDIO: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
664 |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
665 guiInfo.AudioChannels = data ? ((sh_audio_t *)data)->channels : 0; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
666 |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
667 if (data && !guiInfo.sh_video) |
33901 | 668 guiInfo.VideoWindow = False; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
669 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
670 gui(GUI_SET_MIXER, 0); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
671 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
672 if (gtkEnableAudioEqualizer) { |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
673 equalizer_t eq; |
33693
006a2db8bd55
Use unsigned index variable for comparison with array size.
ib
parents:
33692
diff
changeset
|
674 unsigned int i, j; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
675 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
676 for (i = 0; i < FF_ARRAY_ELEMS(gtkEquChannels); i++) { |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
677 for (j = 0; j < FF_ARRAY_ELEMS(*gtkEquChannels); j++) { |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
678 eq.channel = i; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
679 eq.band = j; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
680 eq.gain = gtkEquChannels[i][j]; |
33766 | 681 mplayer(MPLAYER_SET_EQUALIZER, 0, &eq); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
682 } |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
683 } |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
684 } |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
685 |
33960 | 686 // These must be done here (in the last call from MPlayer before |
687 // playback starts) and not in GUI_SETUP_VIDEO_WINDOW, because... | |
688 | |
689 // ...without video there will be no call to GUI_SETUP_VIDEO_WINDOW | |
690 if (!guiInfo.VideoWindow) { | |
691 wsVisibleWindow(&guiApp.subWindow, wsHideWindow); | |
33978 | 692 btnSet(evFullScreen, (gtkLoadFullscreen ? btnPressed : btnReleased)); |
33960 | 693 } |
694 | |
695 // ...option variable fullscreen determines whether MPlayer will handle | |
696 // the window given by WinID as fullscreen window (and will do aspect | |
697 // scaling then) or not - quite rubbish | |
698 fullscreen = gtkLoadFullscreen; | |
699 | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
700 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
701 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
702 case GUI_SET_MIXER: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
703 if (mixer) { |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
704 float l, r; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
705 static float last_balance = -1; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
706 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
707 mixer_getvolume(mixer, &l, &r); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
708 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
709 guiInfo.Volume = FFMAX(l, r); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
710 btnModify(evSetVolume, guiInfo.Volume); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
711 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
712 if (guiInfo.Balance != last_balance) { |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
713 if (guiInfo.Volume) |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
714 guiInfo.Balance = ((r - l) / guiInfo.Volume + 1.0) * 50.0; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
715 else |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
716 guiInfo.Balance = 50.0f; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
717 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
718 last_balance = guiInfo.Balance; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
719 btnModify(evSetBalance, guiInfo.Balance); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
720 } |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
721 } |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
722 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
723 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
724 case GUI_REDRAW: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
725 uiEventHandling(evRedraw, 0); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
726 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
727 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
728 case GUI_SETUP_VIDEO_WINDOW: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
729 |
33901 | 730 guiInfo.VideoWidth = vo_dwidth; |
731 guiInfo.VideoHeight = vo_dheight; | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
732 |
33960 | 733 if (!guiApp.subWindow.isFullScreen || !guiApp.subWindow.Mapped) { |
734 if (!guiApp.subWindow.isFullScreen) | |
735 wsResizeWindow(&guiApp.subWindow, guiInfo.VideoWidth, guiInfo.VideoHeight); | |
736 | |
33993 | 737 wsMoveWindow(&guiApp.subWindow, False, guiApp.sub.x, guiApp.sub.y); |
33960 | 738 |
739 if (!guiApp.subWindow.Mapped) | |
740 wsVisibleWindow(&guiApp.subWindow, wsShowWindow); | |
741 } | |
742 | |
743 if (gtkLoadFullscreen ^ guiApp.subWindow.isFullScreen) | |
744 uiEventHandling(evFullScreen, 0); | |
745 | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
746 if (guiWinID >= 0) |
33993 | 747 wsMoveWindow(&guiApp.mainWindow, True, 0, guiInfo.VideoHeight); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
748 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
749 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
750 |
33733 | 751 case GUI_HANDLE_X_EVENT: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
752 wsEvents(wsDisplay, data); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
753 gtkEventHandling(); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
754 break; |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
755 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
756 case GUI_END_FILE: |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
757 |
34035 | 758 uiEventHandling(evRedraw, 1); |
759 | |
34052 | 760 guiInfo.sh_video = NULL; |
761 | |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
762 if (!uiGotoTheNext && guiInfo.Playing) { |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
763 uiGotoTheNext = 1; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
764 break; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
765 } |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
766 |
33742
e1539e14d60f
Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents:
33741
diff
changeset
|
767 if (guiInfo.Playing && (next = listSet(gtkGetNextPlItem, NULL)) && (plLastPlayed != next)) { |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
768 plLastPlayed = next; |
33740
2c02269701bd
Remove macros guiSetFilename() and guiSetDF() from interface.h.
ib
parents:
33739
diff
changeset
|
769 setddup(&guiInfo.Filename, next->path, next->name); |
33895 | 770 guiInfo.StreamType = STREAMTYPE_FILE; |
771 guiInfo.NewPlay = GUI_FILE_NEW; | |
33897 | 772 nfree(guiInfo.AudioFilename); |
773 nfree(guiInfo.SubtitleFilename); | |
33898 | 774 guiInfo.Track++; |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
775 } else { |
33894 | 776 if (guiInfo.NewPlay == GUI_FILE_NEW) |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
777 break; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
778 |
33897 | 779 guiInfo.ElapsedTime = 0; |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
780 guiInfo.Position = 0; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
781 guiInfo.AudioChannels = 0; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
782 |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
783 #ifdef CONFIG_DVDREAD |
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
784 guiInfo.Track = 1; |
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
785 guiInfo.Chapter = 1; |
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
786 guiInfo.Angle = 1; |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
787 #endif |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
788 |
33960 | 789 if (gtkShowVideoWindow) { |
790 guiInfo.VideoWindow = True; | |
791 guiInfo.VideoWidth = guiApp.sub.width; | |
792 guiInfo.VideoHeight = guiApp.sub.height; | |
793 | |
794 if (!guiApp.subWindow.isFullScreen) { | |
795 wsResizeWindow(&guiApp.subWindow, guiInfo.VideoWidth, guiInfo.VideoHeight); | |
33993 | 796 wsMoveWindow(&guiApp.subWindow, False, guiApp.sub.x, guiApp.sub.y); |
33960 | 797 } |
798 | |
799 if (!guiApp.subWindow.Mapped) | |
800 wsVisibleWindow(&guiApp.subWindow, wsShowWindow); | |
801 | |
802 if (gtkLoadFullscreen ^ guiApp.subWindow.isFullScreen) | |
803 uiEventHandling(evFullScreen, 0); | |
804 } else { | |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
805 wsVisibleWindow(&guiApp.subWindow, wsHideWindow); |
33960 | 806 guiInfo.VideoWindow = False; |
33978 | 807 btnSet(evFullScreen, (gtkLoadFullscreen ? btnPressed : btnReleased)); |
33960 | 808 } |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
809 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
810 gui(GUI_SET_STATE, (void *)GUI_STOP); |
33959 | 811 |
812 wsHandleEvents(); | |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
813 uiSubRender = 1; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
814 wsSetBackgroundRGB(&guiApp.subWindow, guiApp.sub.R, guiApp.sub.G, guiApp.sub.B); |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
815 wsClearWindow(guiApp.subWindow); |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
816 wsPostRedisplay(&guiApp.subWindow); |
34032 | 817 wsVisibleMouse(&guiApp.subWindow, wsShowMouseCursor); |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
818 } |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
819 |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
820 break; |
32984 | 821 } |
822 | |
33666
0f592e8530f1
Change return code of guiGetEvent() to indicate success.
ib
parents:
33664
diff
changeset
|
823 return True; |
23077 | 824 } |
825 | |
33746 | 826 // This function adds/inserts one file into the gui playlist. |
827 static int import_file_into_gui(char *temp, int insert) | |
828 { | |
829 char *filename, *pathname; | |
830 plItem *item; | |
831 | |
832 filename = strdup(mp_basename(temp)); | |
833 pathname = strdup(temp); | |
834 | |
835 if (strlen(pathname) - strlen(filename) > 0) | |
836 pathname[strlen(pathname) - strlen(filename) - 1] = 0; // we have some path, so remove / at end | |
837 else | |
838 pathname[strlen(pathname) - strlen(filename)] = 0; | |
839 | |
33985 | 840 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] playtree, add: %s/%s\n", pathname, filename); |
33746 | 841 |
842 item = calloc(1, sizeof(plItem)); | |
843 | |
844 if (!item) | |
845 return 0; | |
846 | |
847 item->name = filename; | |
848 item->path = pathname; | |
849 | |
850 if (insert) | |
851 listSet(gtkInsertPlItem, item); // inserts the item after current, and makes current=item | |
852 else | |
853 listSet(gtkAddPlItem, item); | |
854 | |
855 return 1; | |
856 } | |
857 | |
858 // This function imports the initial playtree (based on cmd-line files) | |
859 // into the gui playlist by either: | |
860 // - overwriting gui pl (enqueue=0) | |
861 // - appending it to gui pl (enqueue=1) | |
33752 | 862 int guiPlaylistInitialize(play_tree_t *my_playtree, m_config_t *config, int enqueue) |
33746 | 863 { |
864 play_tree_iter_t *my_pt_iter = NULL; | |
865 int result = 0; | |
866 | |
867 if (!enqueue) | |
868 listSet(gtkDelPl, NULL); // delete playlist before "appending" | |
869 | |
870 if ((my_pt_iter = pt_iter_create(&my_playtree, config))) { | |
871 while ((filename = pt_iter_get_next_file(my_pt_iter)) != NULL) | |
872 // add it to end of list | |
873 if (import_file_into_gui(filename, 0)) | |
874 result = 1; | |
875 } | |
876 | |
877 uiCurr(); // update filename | |
878 uiGotoTheNext = 1; | |
879 | |
880 if (!enqueue) | |
881 filename = guiInfo.Filename; // Backward compatibility; if file is specified on commandline, | |
882 // gmplayer does directly start in Play-Mode. | |
883 else | |
884 filename = NULL; | |
885 | |
886 return result; | |
887 } | |
888 | |
889 // This function imports and inserts an playtree, that is created "on the fly", | |
890 // for example by parsing some MOV-Reference-File; or by loading an playlist | |
891 // with "File Open". | |
892 // The file which contained the playlist is thereby replaced with it's contents. | |
33752 | 893 int guiPlaylistAdd(play_tree_t *my_playtree, m_config_t *config) |
33746 | 894 { |
895 play_tree_iter_t *my_pt_iter = NULL; | |
896 int result = 0; | |
897 plItem *save; | |
898 | |
899 save = (plItem *)listSet(gtkGetCurrPlItem, NULL); // save current item | |
900 | |
901 if ((my_pt_iter = pt_iter_create(&my_playtree, config))) { | |
902 while ((filename = pt_iter_get_next_file(my_pt_iter)) != NULL) | |
903 // insert it into the list and set plCurrent=new item | |
904 if (import_file_into_gui(filename, 1)) | |
905 result = 1; | |
906 | |
907 pt_iter_destroy(&my_pt_iter); | |
908 } | |
909 | |
910 if (save) | |
911 listSet(gtkSetCurrPlItem, save); | |
912 else | |
913 listSet(gtkSetCurrPlItem, plList); // go to head, if plList was empty before | |
914 | |
915 if (save && result) | |
916 listSet(gtkDelCurrPlItem, NULL); | |
917 | |
918 uiCurr(); // update filename | |
919 filename = NULL; | |
920 | |
921 return result; | |
922 } | |
923 | |
924 /* GUI -> MPlayer */ | |
925 | |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
926 void mplayer(int what, float value, void *data) |
23077 | 927 { |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
928 equalizer_t *eq = (equalizer_t *)data; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
929 |
33765 | 930 switch (what) { |
32984 | 931 // subtitle |
932 | |
27393 | 933 #ifndef CONFIG_FREETYPE |
33766 | 934 case MPLAYER_SET_FONT_FACTOR: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
935 font_factor = value; |
33763 | 936 mplayerLoadFont(); |
33744 | 937 break; |
23077 | 938 #else |
33766 | 939 case MPLAYER_SET_FONT_OUTLINE: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
940 subtitle_font_thickness = (8.0f / 100.0f) * value; |
33763 | 941 mplayerLoadFont(); |
33744 | 942 break; |
32984 | 943 |
33766 | 944 case MPLAYER_SET_FONT_BLUR: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
945 subtitle_font_radius = (8.0f / 100.0f) * value; |
33763 | 946 mplayerLoadFont(); |
33744 | 947 break; |
32984 | 948 |
33766 | 949 case MPLAYER_SET_FONT_TEXTSCALE: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
950 text_font_scale_factor = value; |
33763 | 951 mplayerLoadFont(); |
33744 | 952 break; |
32984 | 953 |
33766 | 954 case MPLAYER_SET_FONT_OSDSCALE: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
955 osd_font_scale_factor = value; |
33763 | 956 mplayerLoadFont(); |
33744 | 957 break; |
32984 | 958 |
33766 | 959 case MPLAYER_SET_FONT_ENCODING: |
33739 | 960 nfree(subtitle_font_encoding); |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
961 subtitle_font_encoding = gstrdup((char *)data); |
33763 | 962 mplayerLoadFont(); |
33744 | 963 break; |
32984 | 964 |
33766 | 965 case MPLAYER_SET_FONT_AUTOSCALE: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
966 subtitle_autoscale = (int)value; |
33763 | 967 mplayerLoadFont(); |
33744 | 968 break; |
23077 | 969 #endif |
32984 | 970 |
27393 | 971 #ifdef CONFIG_ICONV |
33766 | 972 case MPLAYER_SET_SUB_ENCODING: |
33739 | 973 nfree(sub_cp); |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
974 sub_cp = gstrdup((char *)data); |
32984 | 975 break; |
23077 | 976 #endif |
32984 | 977 |
33766 | 978 case MPLAYER_SET_EXTRA_STEREO: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
979 gtkAOExtraStereoMul = value; |
33555 | 980 if (guiInfo.afilter) |
981 af_control_any_rev(guiInfo.afilter, AF_CONTROL_ES_MUL | AF_CONTROL_SET, >kAOExtraStereoMul); | |
33744 | 982 break; |
32984 | 983 |
33766 | 984 case MPLAYER_SET_PANSCAN: |
32984 | 985 { |
986 mp_cmd_t *mp_cmd; | |
987 | |
988 mp_cmd = calloc(1, sizeof(*mp_cmd)); | |
989 mp_cmd->id = MP_CMD_PANSCAN; | |
990 mp_cmd->name = strdup("panscan"); | |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
991 mp_cmd->args[0].v.f = value; |
32984 | 992 mp_cmd->args[1].v.i = 1; |
993 mp_input_queue_cmd(mp_cmd); | |
994 } | |
33744 | 995 break; |
32984 | 996 |
33766 | 997 case MPLAYER_SET_AUTO_QUALITY: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
998 auto_quality = (int)value; |
33744 | 999 break; |
32984 | 1000 |
1001 // set equalizers | |
1002 | |
33766 | 1003 case MPLAYER_SET_CONTRAST: |
33555 | 1004 if (guiInfo.sh_video) |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1005 set_video_colors(guiInfo.sh_video, "contrast", (int)value); |
33744 | 1006 break; |
32984 | 1007 |
33766 | 1008 case MPLAYER_SET_BRIGHTNESS: |
33555 | 1009 if (guiInfo.sh_video) |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1010 set_video_colors(guiInfo.sh_video, "brightness", (int)value); |
33744 | 1011 break; |
32984 | 1012 |
33766 | 1013 case MPLAYER_SET_HUE: |
33555 | 1014 if (guiInfo.sh_video) |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1015 set_video_colors(guiInfo.sh_video, "hue", (int)value); |
33744 | 1016 break; |
32984 | 1017 |
33766 | 1018 case MPLAYER_SET_SATURATION: |
33555 | 1019 if (guiInfo.sh_video) |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1020 set_video_colors(guiInfo.sh_video, "saturation", (int)value); |
33744 | 1021 break; |
32984 | 1022 |
33766 | 1023 case MPLAYER_SET_EQUALIZER: |
32984 | 1024 { |
23077 | 1025 af_control_ext_t tmp; |
32984 | 1026 |
1027 if (eq) { | |
1028 gtkEquChannels[eq->channel][eq->band] = eq->gain; | |
1029 tmp.ch = eq->channel; | |
1030 tmp.arg = gtkEquChannels[eq->channel]; | |
1031 | |
33555 | 1032 if (guiInfo.afilter) |
1033 af_control_any_rev(guiInfo.afilter, AF_CONTROL_EQUALIZER_GAIN | AF_CONTROL_SET, &tmp); | |
32984 | 1034 } else { |
33693
006a2db8bd55
Use unsigned index variable for comparison with array size.
ib
parents:
33692
diff
changeset
|
1035 unsigned int i; |
32984 | 1036 |
1037 memset(gtkEquChannels, 0, sizeof(gtkEquChannels)); | |
1038 | |
33555 | 1039 if (guiInfo.afilter) { |
33689
8d0290220239
Replace numeric constants for gtkEquChannels array size.
ib
parents:
33688
diff
changeset
|
1040 for (i = 0; i < FF_ARRAY_ELEMS(gtkEquChannels); i++) { |
32984 | 1041 tmp.ch = i; |
1042 tmp.arg = gtkEquChannels[i]; | |
33555 | 1043 af_control_any_rev(guiInfo.afilter, AF_CONTROL_EQUALIZER_GAIN | AF_CONTROL_SET, &tmp); |
32984 | 1044 } |
1045 } | |
1046 } | |
1047 | |
33744 | 1048 break; |
32984 | 1049 } |
33768 | 1050 |
1051 case MPLAYER_EXIT_GUI: | |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1052 exit_player_with_rc((enum exit_reason)value, (enum exit_reason)value >= EXIT_ERROR); |
33768 | 1053 break; |
32984 | 1054 } |
23077 | 1055 } |
1056 | |
33763 | 1057 void mplayerLoadFont(void) |
33745 | 1058 { |
1059 #ifdef CONFIG_FREETYPE | |
1060 load_font_ft(vo_image_width, vo_image_height, &vo_font, font_name, osd_font_scale_factor); | |
1061 #else | |
1062 if (vo_font) { | |
1063 int i; | |
1064 | |
1065 free(vo_font->name); | |
1066 free(vo_font->fpath); | |
1067 | |
1068 for (i = 0; i < 16; i++) { | |
1069 if (vo_font->pic_a[i]) { | |
1070 free(vo_font->pic_a[i]->bmp); | |
1071 free(vo_font->pic_a[i]->pal); | |
1072 } | |
1073 } | |
1074 | |
1075 for (i = 0; i < 16; i++) { | |
1076 if (vo_font->pic_b[i]) { | |
1077 free(vo_font->pic_b[i]->bmp); | |
1078 free(vo_font->pic_b[i]->pal); | |
1079 } | |
1080 } | |
1081 | |
1082 free(vo_font); | |
1083 vo_font = NULL; | |
1084 } | |
1085 | |
1086 if (font_name) { | |
1087 vo_font = read_font_desc(font_name, font_factor, 0); | |
1088 | |
1089 if (!vo_font) | |
1090 gmp_msg(MSGT_GPLAYER, MSGL_ERR, MSGTR_CantLoadFont, font_name); | |
1091 } else { | |
1092 font_name = gstrdup(get_path("font/font.desc")); | |
1093 vo_font = read_font_desc(font_name, font_factor, 0); | |
1094 | |
1095 if (!vo_font) { | |
1096 nfree(font_name); | |
1097 font_name = gstrdup(MPLAYER_DATADIR "/font/font.desc"); | |
1098 vo_font = read_font_desc(font_name, font_factor, 0); | |
1099 } | |
1100 } | |
1101 #endif | |
1102 } | |
1103 | |
33790
ab6d06f5b98b
Add const to some string pointer arguments that will not be modified.
ib
parents:
33775
diff
changeset
|
1104 void mplayerLoadSubtitle(const char *name) |
33745 | 1105 { |
33773 | 1106 if (guiInfo.Playing == 0) |
33745 | 1107 return; |
1108 | |
1109 if (subdata) { | |
1110 mp_msg(MSGT_GPLAYER, MSGL_INFO, MSGTR_DeletingSubtitles); | |
1111 | |
1112 sub_free(subdata); | |
1113 subdata = NULL; | |
1114 vo_sub = NULL; | |
1115 | |
1116 if (vo_osd_list) { | |
1117 int len; | |
1118 mp_osd_obj_t *osd; | |
1119 | |
1120 osd = vo_osd_list; | |
1121 | |
1122 while (osd) { | |
1123 if (osd->type == OSDTYPE_SUBTITLE) | |
1124 break; | |
1125 | |
1126 osd = osd->next; | |
1127 } | |
1128 | |
1129 if (osd && (osd->flags & OSDFLAG_VISIBLE)) { | |
1130 len = osd->stride * (osd->bbox.y2 - osd->bbox.y1); | |
1131 memset(osd->bitmap_buffer, 0, len); | |
1132 memset(osd->alpha_buffer, 0, len); | |
1133 } | |
1134 } | |
1135 } | |
1136 | |
1137 if (name) { | |
1138 mp_msg(MSGT_GPLAYER, MSGL_INFO, MSGTR_LoadingSubtitles, name); | |
1139 | |
33775 | 1140 subdata = sub_read_file(name, (guiInfo.sh_video ? guiInfo.sh_video->fps : 0)); |
33745 | 1141 |
1142 if (!subdata) | |
1143 gmp_msg(MSGT_GPLAYER, MSGL_ERR, MSGTR_CantLoadSub, name); | |
1144 | |
1145 sub_name = (malloc(2 * sizeof(char *))); // when mplayer will be restarted | |
1146 sub_name[0] = strdup(name); // sub_name[0] will be read | |
1147 sub_name[1] = NULL; | |
1148 } | |
1149 | |
1150 update_set_of_subtitles(); | |
1151 } | |
1152 | |
33023 | 1153 // NOTE TO MYSELF: This function is nonsense. |
33289 | 1154 // MPlayer should pass messages to the GUI |
1155 // which must decide then which message has | |
1156 // to be shown (MSGL_FATAL, for example). | |
1157 // But with this function it is at least | |
1158 // possible to show GUI's very critical or | |
1159 // abort messages. | |
33023 | 1160 void gmp_msg(int mod, int lev, const char *format, ...) |
1161 { | |
1162 char msg[512]; | |
1163 va_list va; | |
1164 | |
1165 va_start(va, format); | |
1166 vsnprintf(msg, sizeof(msg), format, va); | |
1167 va_end(va); | |
1168 | |
1169 mp_msg(mod, lev, msg); | |
1170 | |
1171 if (mp_msg_test(mod, lev)) | |
1172 gtkMessageBox(GTK_MB_FATAL, msg); | |
1173 } |