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