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