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