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