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