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