Mercurial > mplayer.hg
annotate gui/interface.c @ 36869:80536f6e6f07
Add missing #include.
author | ib |
---|---|
date | Sun, 02 Mar 2014 20:04:46 +0000 |
parents | c17524b27039 |
children | d762d49a47e0 |
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 { |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
320 #ifdef CONFIG_DVDREAD |
33687 | 321 dvd_priv_t *dvd; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
322 #endif |
36779 | 323 int idata = (intptr_t)data, msg, state; |
36456 | 324 stream_t *stream = NULL; |
36455 | 325 sh_audio_t *sh_audio; |
36454 | 326 mixer_t *mixer; |
36457 | 327 plItem *next = NULL; |
23077 | 328 |
33726 | 329 switch (what) { |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
330 case GUI_SET_CONTEXT: |
35541 | 331 |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
332 guiInfo.mpcontext = data; |
23077 | 333 break; |
32984 | 334 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
335 case GUI_SET_STATE: |
32984 | 336 |
36779 | 337 switch (idata) { |
33631 | 338 case GUI_STOP: |
33614 | 339 case GUI_PLAY: |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
340 // if ( !gtkShowVideoWindow ) wsWindowVisibility( &guiApp.videoWindow,wsHideWindow ); |
33614 | 341 case GUI_PAUSE: |
36779 | 342 guiInfo.Playing = idata; |
32984 | 343 break; |
344 } | |
345 | |
33555 | 346 uiState(); |
23077 | 347 break; |
32984 | 348 |
36294 | 349 case GUI_REDRAW: |
350 | |
351 uiEvent(ivRedraw, 0); | |
35541 | 352 |
33901 | 353 if (!guiInfo.Playing || !guiInfo.VideoWindow) |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
354 wsEvents(); |
36068 | 355 /* else it's handled by the vo driver calling GUI_HANDLE_X_EVENT */ |
35541 | 356 |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
357 wsMouseAutohide(); |
36070 | 358 gtkEvents(); |
35541 | 359 |
33732 | 360 break; |
361 | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
362 case GUI_RUN_COMMAND: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
363 |
36779 | 364 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
|
365 |
36779 | 366 switch (idata) { |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
367 case MP_CMD_VO_FULLSCREEN: |
35773 | 368 uiEvent(evFullScreen, True); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
369 break; |
33696
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
370 |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
371 case MP_CMD_PLAY_TREE_STEP: |
35773 | 372 uiEvent(evNext, 0); |
33696
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
373 break; |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
374 |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
375 case -MP_CMD_PLAY_TREE_STEP: |
35773 | 376 uiEvent(evPrev, 0); |
33696
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
377 break; |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
378 |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
379 case MP_CMD_STOP: |
35773 | 380 uiEvent(evStop, 0); |
33696
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
381 break; |
33697 | 382 |
383 case MP_CMD_QUIT: | |
35773 | 384 uiEvent(evExit, 0); |
33697 | 385 break; |
33692
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 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
388 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
389 |
34339 | 390 case GUI_RUN_MESSAGE: |
35541 | 391 |
34339 | 392 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] GUI_RUN_MESSAGE: %s\n", (const char *)data); |
393 msg = appFindMessage((const char *)data); | |
35541 | 394 |
34458 | 395 if ((msg == evMenu) || appFindItem(msg)) |
35773 | 396 uiEvent(msg, 0); |
35541 | 397 |
34339 | 398 break; |
399 | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
400 case GUI_PREPARE: |
32984 | 401 |
36292 | 402 uiEvent(ivRedraw, True); |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
403 wsMouseVisibility(&guiApp.videoWindow, wsHideMouseCursor); |
36292 | 404 usec_sleep(20000); |
405 wsEvents(); | |
32984 | 406 |
34052 | 407 if (guiInfo.NewPlay == GUI_FILE_NEW) { |
408 audio_id = -1; | |
409 video_id = -1; | |
410 dvdsub_id = -1; | |
411 vobsub_id = -1; | |
412 | |
413 stream_cache_size = -1; | |
414 autosync = 0; | |
415 force_fps = 0; | |
416 } | |
34032 | 417 |
33555 | 418 switch (guiInfo.StreamType) { |
34073 | 419 case STREAMTYPE_FILE: |
420 case STREAMTYPE_STREAM: | |
35484 | 421 filename = guiInfo.Filename; |
32984 | 422 break; |
423 | |
34387 | 424 case STREAMTYPE_CDDA: |
425 { | |
426 char tmp[512]; | |
427 | |
428 sprintf(tmp, "cdda://%d", guiInfo.Track); | |
35452 | 429 uiSetFile(NULL, tmp, SAME_STREAMTYPE); |
34387 | 430 } |
431 break; | |
432 | |
32984 | 433 case STREAMTYPE_VCD: |
434 { | |
435 char tmp[512]; | |
436 | |
33874 | 437 sprintf(tmp, "vcd://%d", guiInfo.Track); |
35452 | 438 uiSetFile(NULL, tmp, SAME_STREAMTYPE); |
32984 | 439 } |
440 break; | |
441 | |
442 case STREAMTYPE_DVD: | |
443 { | |
444 char tmp[512]; | |
445 | |
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
446 sprintf(tmp, "dvd://%d", guiInfo.Track); |
35452 | 447 uiSetFile(NULL, tmp, SAME_STREAMTYPE); |
32984 | 448 } |
35168 | 449 #ifdef CONFIG_DVDREAD |
33555 | 450 dvd_chapter = guiInfo.Chapter; |
451 dvd_angle = guiInfo.Angle; | |
35168 | 452 #endif |
32984 | 453 break; |
36429 | 454 |
455 case STREAMTYPE_TV: | |
456 case STREAMTYPE_DVB: | |
457 { | |
458 char tmp[512]; | |
459 | |
460 sprintf(tmp, "%s://", guiTV[gui_tv_digital].SchemeName); | |
461 uiSetFile(NULL, tmp, SAME_STREAMTYPE); | |
462 } | |
32984 | 463 } |
464 | |
34684 | 465 /* video opts */ |
32984 | 466 |
467 if (!video_driver_list) { | |
468 int i = 0; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
469 |
32984 | 470 while (video_out_drivers[i++]) { |
471 if (video_out_drivers[i - 1]->control(VOCTRL_GUISUPPORT, NULL) == VO_TRUE) { | |
36841 | 472 listSet(&video_driver_list, video_out_drivers[i - 1]->info->short_name); |
32984 | 473 break; |
474 } | |
475 } | |
476 } | |
477 | |
478 if (!video_driver_list && !video_driver_list[0]) { | |
36694 | 479 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_GUI_MSG_VideoOutError); |
33768 | 480 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); |
32984 | 481 } |
482 | |
483 { | |
484 int i = 0; | |
485 | |
36863 | 486 guiInfo.VideoWindow = False; |
32984 | 487 |
488 while (video_out_drivers[i++]) { | |
36864 | 489 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)) { |
490 guiInfo.VideoWindow = True; | |
491 break; | |
492 } | |
32984 | 493 } |
494 } | |
495 | |
496 if (video_driver_list && !gstrcmp(video_driver_list[0], "dxr3")) | |
33555 | 497 if (guiInfo.StreamType != STREAMTYPE_DVD && guiInfo.StreamType != STREAMTYPE_VCD) |
32984 | 498 if (gtkVfLAVC) |
499 add_vf("lavc"); | |
500 | |
501 if (gtkVfPP) | |
502 add_vf("pp"); | |
503 | |
34684 | 504 /* audio opts */ |
32984 | 505 |
506 // if ( ao_plugin_cfg.plugin_list ) { free( ao_plugin_cfg.plugin_list ); ao_plugin_cfg.plugin_list=NULL; } | |
507 if (gtkAONorm) | |
34610 | 508 listRepl(&af_cfg.list, "volnorm", "volnorm"); |
32984 | 509 |
510 if (gtkEnableAudioEqualizer) | |
34610 | 511 listRepl(&af_cfg.list, "equalizer", "equalizer"); |
32984 | 512 |
513 if (gtkAOExtraStereo) { | |
514 char *name; | |
515 | |
516 name = malloc(12 + 20 + 1); | |
517 snprintf(name, 12 + 20, "extrastereo=%f", gtkAOExtraStereoMul); | |
518 name[12 + 20] = 0; | |
34610 | 519 listRepl(&af_cfg.list, "extrastereo", name); |
32984 | 520 free(name); |
521 } | |
522 | |
523 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "oss", 3)) { | |
524 mixer_device = gtkAOOSSMixer; | |
525 mixer_channel = gtkAOOSSMixerChannel; | |
526 | |
527 if (gtkAOOSSDevice) { | |
34625 | 528 char *tmp; |
34624 | 529 |
32984 | 530 tmp = calloc(1, strlen(gtkAOOSSDevice) + 7); |
531 sprintf(tmp, "oss:%s", gtkAOOSSDevice); | |
34625 | 532 listSet(&audio_driver_list, tmp); |
533 free(tmp); | |
34624 | 534 } |
32984 | 535 } |
536 | |
537 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "alsa", 4)) { | |
538 mixer_device = gtkAOALSAMixer; | |
539 mixer_channel = gtkAOALSAMixerChannel; | |
540 | |
541 if (gtkAOALSADevice) { | |
34625 | 542 char *tmp; |
34624 | 543 |
32984 | 544 tmp = calloc(1, strlen(gtkAOALSADevice) + 14); |
545 sprintf(tmp, "alsa:device=%s", gtkAOALSADevice); | |
34625 | 546 listSet(&audio_driver_list, tmp); |
547 free(tmp); | |
34624 | 548 } |
32984 | 549 } |
550 | |
551 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "sdl", 3)) { | |
34624 | 552 if (gtkAOSDLDriver) { |
34625 | 553 char *tmp; |
32984 | 554 |
555 tmp = calloc(1, strlen(gtkAOSDLDriver) + 10); | |
556 sprintf(tmp, "sdl:%s", gtkAOSDLDriver); | |
34625 | 557 listSet(&audio_driver_list, tmp); |
558 free(tmp); | |
34624 | 559 } |
32984 | 560 } |
561 | |
562 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "esd", 3)) { | |
34624 | 563 if (gtkAOESDDevice) { |
34625 | 564 char *tmp; |
32984 | 565 |
566 tmp = calloc(1, strlen(gtkAOESDDevice) + 10); | |
567 sprintf(tmp, "esd:%s", gtkAOESDDevice); | |
34625 | 568 listSet(&audio_driver_list, tmp); |
569 free(tmp); | |
34624 | 570 } |
32984 | 571 } |
572 | |
34684 | 573 /* subtitle */ |
32984 | 574 |
33897 | 575 // subdata->filename=gstrdup( guiInfo.SubtitleFilename ); |
32984 | 576 stream_dump_type = 0; |
577 | |
578 if (gtkSubDumpMPSub) | |
579 stream_dump_type = 4; | |
580 | |
581 if (gtkSubDumpSrt) | |
582 stream_dump_type = 6; | |
583 | |
35493 | 584 gtkSubDumpMPSub = gtkSubDumpSrt = False; |
23077 | 585 |
34684 | 586 /* misc */ |
32984 | 587 |
588 if (gtkCacheOn) | |
589 stream_cache_size = gtkCacheSize; | |
590 | |
591 if (gtkAutoSyncOn) | |
592 autosync = gtkAutoSync; | |
23077 | 593 |
33897 | 594 if (guiInfo.AudioFilename) |
595 audio_stream = gstrdup(guiInfo.AudioFilename); | |
33894 | 596 else if (guiInfo.NewPlay == GUI_FILE_NEW) |
33739 | 597 nfree(audio_stream); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
598 |
32984 | 599 // audio_stream = NULL; |
600 | |
33555 | 601 guiInfo.NewPlay = 0; |
23077 | 602 |
32984 | 603 ass_enabled = gtkASS.enabled; |
604 ass_use_margins = gtkASS.use_margins; | |
605 ass_top_margin = gtkASS.top_margin; | |
23077 | 606 ass_bottom_margin = gtkASS.bottom_margin; |
607 | |
32984 | 608 break; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
609 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
610 case GUI_SET_STREAM: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
611 |
34859 | 612 if (guiInfo.StreamType == STREAMTYPE_PLAYLIST) |
613 guiInfo.mpcontext->file_format = DEMUXER_TYPE_PLAYLIST; | |
36456 | 614 else { |
36457 | 615 stream = data; |
616 guiInfo.StreamType = stream->type; | |
36456 | 617 } |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
618 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
619 switch (guiInfo.StreamType) { |
34424 | 620 case STREAMTYPE_FILE: |
621 case STREAMTYPE_STREAM: | |
36772
0da6c7ff95d2
Revise code of listMgr() command PLAYLIST_ITEM_GET_POS.
ib
parents:
36762
diff
changeset
|
622 guiInfo.Tracks = (uintptr_t)listMgr(PLAYLIST_ITEM_GET_POS, 0); |
34424 | 623 break; |
624 | |
34387 | 625 case STREAMTYPE_CDDA: |
626 guiInfo.Tracks = 0; | |
627 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
|
628 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
|
629 guiInfo.Track++; |
34387 | 630 break; |
631 | |
34077 | 632 case STREAMTYPE_VCD: |
633 guiInfo.Tracks = 0; | |
34388
9ee95c78e85f
Replace VCD's STREAM_CTRL_GET_NUM_CHAPTERS by STREAM_CTRL_GET_NUM_TITLES.
ib
parents:
34387
diff
changeset
|
634 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
|
635 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
|
636 guiInfo.Track++; |
34077 | 637 break; |
638 | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
639 case STREAMTYPE_DVD: |
34389
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
640 guiInfo.Tracks = 0; |
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
641 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
|
642 guiInfo.Chapters = 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_CHAPTERS, &guiInfo.Chapters); |
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
644 guiInfo.Angles = 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_ANGLES, &guiInfo.Angles); |
36430
08f21a09a545
Don't discard current DVD track information without cause.
ib
parents:
36429
diff
changeset
|
646 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
|
647 guiInfo.Track++; |
35168 | 648 // guiInfo.Chapter will be set by mplayer |
649 guiInfo.Angle = 1; | |
650 stream_control(stream, STREAM_CTRL_GET_ANGLE, &guiInfo.Angle); | |
34454 | 651 #ifdef CONFIG_DVDREAD |
33730 | 652 dvd = stream->priv; |
33902 | 653 guiInfo.AudioStreams = dvd->nr_of_channels; |
654 memcpy(guiInfo.AudioStream, dvd->audio_streams, sizeof(dvd->audio_streams)); | |
655 guiInfo.Subtitles = dvd->nr_of_subtitles; | |
656 memcpy(guiInfo.Subtitle, dvd->subtitles, sizeof(dvd->subtitles)); | |
34454 | 657 #endif |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
658 break; |
36429 | 659 |
660 case STREAMTYPE_TV: | |
661 case STREAMTYPE_DVB: | |
36437
eb6cdd6b9b86
Update track information at GUI_SET_STREAM for CDDA and VCD.
ib
parents:
36430
diff
changeset
|
662 guiInfo.Tracks = guiInfo.Track = 1; |
36429 | 663 break; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
664 } |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
665 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
666 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
667 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
668 case GUI_SET_VIDEO: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
669 |
34684 | 670 /* video */ |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
671 |
36265 | 672 guiInfo.sh_video = data; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
673 |
35462 | 674 nfree(guiInfo.CodecName); |
675 | |
676 if (guiInfo.sh_video) | |
677 guiInfo.CodecName = strdup(guiInfo.sh_video->codec->name); | |
678 | |
36429 | 679 state = (isSeekableStreamtype ? btnReleased : btnDisabled); |
34074
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
680 btnSet(evForward10sec, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
681 btnSet(evBackward10sec, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
682 btnSet(evForward1min, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
683 btnSet(evBackward1min, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
684 btnSet(evForward10min, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
685 btnSet(evBackward10min, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
686 btnSet(evSetMoviePosition, state); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
687 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
688 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 | 689 gtkMessageBox(MSGBOX_FATAL, MSGTR_GUI_MSG_DXR3NeedsLavc); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
690 return False; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
691 } |
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 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
694 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
695 case GUI_SET_AUDIO: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
696 |
36455 | 697 sh_audio = data; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
698 |
36455 | 699 guiInfo.AudioChannels = sh_audio ? sh_audio->channels : 0; |
700 | |
701 if (sh_audio && !guiInfo.sh_video) { | |
33901 | 702 guiInfo.VideoWindow = False; |
35454 | 703 guiInfo.VideoWidth = 0; |
704 guiInfo.VideoHeight = 0; | |
705 } | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
706 |
36454 | 707 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
|
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 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
739 case GUI_SET_MIXER: |
35535 | 740 |
36454 | 741 mixer = data; |
35535 | 742 |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
743 if (mixer) { |
35537 | 744 float l, r, b; |
35542 | 745 static float last_balance = 50.0f; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
746 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
747 mixer_getvolume(mixer, &l, &r); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
748 guiInfo.Volume = FFMAX(l, r); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
749 btnModify(evSetVolume, guiInfo.Volume); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
750 |
35537 | 751 mixer_getbalance(mixer, &b); |
35544 | 752 guiInfo.Balance = (b + 1.0) * 50.0; // transform -1..1 to 0..100 |
35542 | 753 |
754 if (guiInfo.Balance != last_balance) { | |
755 l = guiInfo.Volume * (100.0 - guiInfo.Balance) / 50.0; | |
756 r = guiInfo.Volume * guiInfo.Balance / 50.0; | |
757 mixer_setvolume(mixer, FFMIN(l, guiInfo.Volume), FFMIN(r, guiInfo.Volume)); | |
758 btnModify(evSetBalance, guiInfo.Balance); | |
759 last_balance = guiInfo.Balance; | |
760 } | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
761 } |
35541 | 762 |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
763 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
764 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
765 case GUI_SETUP_VIDEO_WINDOW: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
766 |
33901 | 767 guiInfo.VideoWidth = vo_dwidth; |
768 guiInfo.VideoHeight = vo_dheight; | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
769 |
34697 | 770 if (!guiApp.videoWindow.isFullScreen || !guiApp.videoWindow.Mapped) { |
771 if (!guiApp.videoWindow.isFullScreen) | |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
772 wsWindowResize(&guiApp.videoWindow, guiInfo.VideoWidth, guiInfo.VideoHeight); |
34697 | 773 if (!guiApp.videoWindow.Mapped) |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
774 wsWindowVisibility(&guiApp.videoWindow, wsShowWindow); |
33960 | 775 } |
776 | |
34697 | 777 if (gtkLoadFullscreen ^ guiApp.videoWindow.isFullScreen) |
35773 | 778 uiEvent(evFullScreen, True); |
33960 | 779 |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
780 if (guiWinID >= 0) |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
781 wsWindowMove(&guiApp.mainWindow, True, 0, guiInfo.VideoHeight); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
782 |
35755
589cf8a5f165
Realize a smooth and flicker-free video when resizing during playback.
ib
parents:
35748
diff
changeset
|
783 wsWindowBackground(&guiApp.videoWindow, -1, -1, -1); |
589cf8a5f165
Realize a smooth and flicker-free video when resizing during playback.
ib
parents:
35748
diff
changeset
|
784 |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
785 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
786 |
33733 | 787 case GUI_HANDLE_X_EVENT: |
35541 | 788 |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
789 wsEvent(data); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
790 break; |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
791 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
792 case GUI_END_FILE: |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
793 |
35330 | 794 guiInfo.sh_video = NULL; |
34035 | 795 |
35773 | 796 uiEvent(ivRedraw, True); |
34052 | 797 |
35565
5f7a983fc838
Embrace several individual "if (guiInfo.Playing)" conditions.
ib
parents:
35564
diff
changeset
|
798 if (guiInfo.Playing) { |
35566 | 799 if (!guiInfo.PlaylistNext) { |
800 guiInfo.PlaylistNext = True; | |
801 break; | |
802 } | |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
803 |
35566 | 804 if (guiInfo.StreamType == STREAMTYPE_CDDA && guiInfo.Track < guiInfo.Tracks) { |
805 uiNext(); | |
806 break; | |
807 } | |
34387 | 808 |
35468
047fc4746236
Cosmetic: Adjust indent and move guiInfo member CodecName in structure.
ib
parents:
35467
diff
changeset
|
809 next = listMgr(PLAYLIST_ITEM_GET_NEXT, 0); |
35565
5f7a983fc838
Embrace several individual "if (guiInfo.Playing)" conditions.
ib
parents:
35564
diff
changeset
|
810 } |
34669
697aaedfe59e
Remove global variable pointing to playlist item last played.
ib
parents:
34667
diff
changeset
|
811 |
35565
5f7a983fc838
Embrace several individual "if (guiInfo.Playing)" conditions.
ib
parents:
35564
diff
changeset
|
812 if (next) { |
35452 | 813 uiSetFile(next->path, next->name, STREAMTYPE_FILE); |
34066 | 814 guiInfo.NewPlay = GUI_FILE_NEW; |
36772
0da6c7ff95d2
Revise code of listMgr() command PLAYLIST_ITEM_GET_POS.
ib
parents:
36762
diff
changeset
|
815 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
|
816 } else { |
33894 | 817 if (guiInfo.NewPlay == GUI_FILE_NEW) |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
818 break; |
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
819 |
34113 | 820 filename = NULL; |
821 | |
35546
cd2c85083fdd
Reset playlist to first item after playback has stopped.
ib
parents:
35544
diff
changeset
|
822 if (isPlaylistStreamtype) { |
35555 | 823 plItem *curr = listMgr(PLAYLIST_ITEM_GET_CURR, 0); |
824 | |
825 if (!curr) | |
35547 | 826 uiUnsetFile(); |
35558 | 827 else if ((curr != listMgr(PLAYLIST_GET, 0)) && guiInfo.Playing) { |
35555 | 828 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
|
829 uiSetFile(curr->path, curr->name, STREAMTYPE_FILE); |
35551
99a11b051705
Set track number after resetting playlist to first item.
ib
parents:
35550
diff
changeset
|
830 guiInfo.Track = 1; |
35546
cd2c85083fdd
Reset playlist to first item after playback has stopped.
ib
parents:
35544
diff
changeset
|
831 } |
35559
14e36699a6e7
Relocate code to set Track, Chapter and Angle start values.
ib
parents:
35558
diff
changeset
|
832 } else if (guiInfo.Playing) { |
35563
d4a84f674401
Reset media information for CD/VCD/DVD after playback.
ib
parents:
35559
diff
changeset
|
833 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
|
834 |
35563
d4a84f674401
Reset media information for CD/VCD/DVD after playback.
ib
parents:
35559
diff
changeset
|
835 if (guiInfo.Track != first) { |
35568 | 836 uiUnsetMedia(True); |
35563
d4a84f674401
Reset media information for CD/VCD/DVD after playback.
ib
parents:
35559
diff
changeset
|
837 guiInfo.Track = first; |
d4a84f674401
Reset media information for CD/VCD/DVD after playback.
ib
parents:
35559
diff
changeset
|
838 } |
35564
8d4a7387d592
Relocate and change code to set Chapter and Angle start values.
ib
parents:
35563
diff
changeset
|
839 |
8d4a7387d592
Relocate and change code to set Chapter and Angle start values.
ib
parents:
35563
diff
changeset
|
840 if (guiInfo.StreamType == STREAMTYPE_DVD) { |
8d4a7387d592
Relocate and change code to set Chapter and Angle start values.
ib
parents:
35563
diff
changeset
|
841 guiInfo.Chapter = 1; |
8d4a7387d592
Relocate and change code to set Chapter and Angle start values.
ib
parents:
35563
diff
changeset
|
842 guiInfo.Angle = 1; |
8d4a7387d592
Relocate and change code to set Chapter and Angle start values.
ib
parents:
35563
diff
changeset
|
843 } |
35546
cd2c85083fdd
Reset playlist to first item after playback has stopped.
ib
parents:
35544
diff
changeset
|
844 } |
35381
746e2e0577b2
Without current playlist item, reset guiInfo's Filename and StreamType.
ib
parents:
35376
diff
changeset
|
845 |
35413 | 846 guiInfo.ElapsedTime = 0; |
36279 | 847 guiInfo.Position = 0.0f; |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
848 |
33960 | 849 if (gtkShowVideoWindow) { |
850 guiInfo.VideoWindow = True; | |
851 | |
35663
d1f84b219340
Don't unnecessarily and annoyingly move the video window.
ib
parents:
35658
diff
changeset
|
852 if (!guiApp.videoWindow.isFullScreen) |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
853 wsWindowResize(&guiApp.videoWindow, guiApp.video.width, guiApp.video.height); |
33960 | 854 |
34697 | 855 if (!guiApp.videoWindow.Mapped) |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
856 wsWindowVisibility(&guiApp.videoWindow, wsShowWindow); |
33960 | 857 |
34697 | 858 if (gtkLoadFullscreen ^ guiApp.videoWindow.isFullScreen) |
35773 | 859 uiEvent(evFullScreen, False); |
33960 | 860 } else { |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
861 wsWindowVisibility(&guiApp.videoWindow, wsHideWindow); |
33960 | 862 guiInfo.VideoWindow = False; |
33978 | 863 btnSet(evFullScreen, (gtkLoadFullscreen ? btnPressed : btnReleased)); |
33960 | 864 } |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
865 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
866 gui(GUI_SET_STATE, (void *)GUI_STOP); |
33959 | 867 |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
868 wsWindowRedraw(&guiApp.videoWindow); |
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
869 wsMouseVisibility(&guiApp.videoWindow, wsShowMouseCursor); |
36293 | 870 wsEvents(); |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
871 } |
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 break; |
32984 | 874 } |
875 | |
33666
0f592e8530f1
Change return code of guiGetEvent() to indicate success.
ib
parents:
33664
diff
changeset
|
876 return True; |
23077 | 877 } |
878 | |
35517 | 879 /** |
880 * @brief Initialize the GUI playlist (i.e. import files that had been given | |
881 * on the command line) or add files "on the fly" (i.e. replace the | |
882 * current one (a playlist file) by other ones (its content)). | |
883 * | |
884 * @param what command (#GUI_PLAYLIST_INIT or #GUI_PLAYLIST_ADD) to be performed | |
885 * @param playtree MPlayer playtree to read from | |
886 * @param config MPlayer config context | |
887 * @param enqueue whether to overwrite GUI playlist (#False) or to append to it (#True) | |
888 * | |
889 * @return #True (ok) or #False (error) | |
890 */ | |
35512 | 891 int guiPlaylist(int what, play_tree_t *playtree, m_config_t *config, int enqueue) |
35510 | 892 { |
35513 | 893 play_tree_iter_t *pt_iter; |
35519
7f1be403a640
Don't unnecessarily use global MPlayer variable filename.
ib
parents:
35518
diff
changeset
|
894 const char *file; |
35510 | 895 int added = False; |
35512 | 896 plItem *curr; |
35510 | 897 |
35513 | 898 pt_iter = pt_iter_create(&playtree, config); |
899 | |
900 if (!pt_iter) | |
901 return False; | |
902 | |
35510 | 903 switch (what) { |
904 case GUI_PLAYLIST_INIT: | |
33746 | 905 |
35511 | 906 if (!enqueue) |
35517 | 907 listMgr(PLAYLIST_DELETE, 0); |
33746 | 908 |
35519
7f1be403a640
Don't unnecessarily use global MPlayer variable filename.
ib
parents:
35518
diff
changeset
|
909 while ((file = pt_iter_get_next_file(pt_iter))) |
7f1be403a640
Don't unnecessarily use global MPlayer variable filename.
ib
parents:
35518
diff
changeset
|
910 if (add_to_gui_playlist(file, PLAYLIST_ITEM_APPEND)) |
35514 | 911 added = True; |
33746 | 912 |
35511 | 913 uiCurr(); // update filename |
914 guiInfo.PlaylistNext = True; | |
33746 | 915 |
35518 | 916 if (added) |
917 guiInfo.Track = 1; | |
918 | |
35511 | 919 if (enqueue) |
920 filename = NULL; // don't start playing | |
33746 | 921 |
35510 | 922 break; |
33746 | 923 |
35510 | 924 case GUI_PLAYLIST_ADD: |
33746 | 925 |
35516 | 926 curr = listMgr(PLAYLIST_ITEM_GET_CURR, 0); |
33746 | 927 |
35519
7f1be403a640
Don't unnecessarily use global MPlayer variable filename.
ib
parents:
35518
diff
changeset
|
928 while ((file = pt_iter_get_next_file(pt_iter))) |
7f1be403a640
Don't unnecessarily use global MPlayer variable filename.
ib
parents:
35518
diff
changeset
|
929 if (add_to_gui_playlist(file, PLAYLIST_ITEM_INSERT)) |
35514 | 930 added = True; |
33746 | 931 |
35512 | 932 if (curr) |
933 listMgr(PLAYLIST_ITEM_SET_CURR, curr); | |
35511 | 934 else |
35517 | 935 listMgr(PLAYLIST_ITEM_SET_CURR, listMgr(PLAYLIST_GET, 0)); |
33746 | 936 |
35512 | 937 if (curr && added) |
35511 | 938 listMgr(PLAYLIST_ITEM_DEL_CURR, 0); |
33746 | 939 |
35511 | 940 uiCurr(); // update filename |
33746 | 941 |
35510 | 942 break; |
943 } | |
944 | |
35513 | 945 pt_iter_destroy(&pt_iter); |
946 | |
35494 | 947 return added; |
33746 | 948 } |
949 | |
950 /* GUI -> MPlayer */ | |
951 | |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
952 void mplayer(int what, float value, void *data) |
23077 | 953 { |
36461 | 954 af_stream_t *afilter; |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
955 equalizer_t *eq = (equalizer_t *)data; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
956 |
33765 | 957 switch (what) { |
34684 | 958 /* subtitle */ |
32984 | 959 |
33766 | 960 case MPLAYER_SET_FONT_FACTOR: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
961 font_factor = value; |
36658 | 962 mplayer(MPLAYER_LOAD_FONT, 0, 0); |
33744 | 963 break; |
34454 | 964 |
33766 | 965 case MPLAYER_SET_FONT_OUTLINE: |
36282
872298702c15
Increase precision of calculation by using constants of type double.
ib
parents:
36279
diff
changeset
|
966 subtitle_font_thickness = 8.0 * value / 100.0; // transform 0..100 to 0..8 |
36658 | 967 mplayer(MPLAYER_LOAD_FONT, 0, 0); |
33744 | 968 break; |
32984 | 969 |
33766 | 970 case MPLAYER_SET_FONT_BLUR: |
36282
872298702c15
Increase precision of calculation by using constants of type double.
ib
parents:
36279
diff
changeset
|
971 subtitle_font_radius = 8.0 * value / 100.0; // transform 0..100 to 0..8 |
36658 | 972 mplayer(MPLAYER_LOAD_FONT, 0, 0); |
33744 | 973 break; |
32984 | 974 |
33766 | 975 case MPLAYER_SET_FONT_TEXTSCALE: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
976 text_font_scale_factor = value; |
36658 | 977 mplayer(MPLAYER_LOAD_FONT, 0, 0); |
33744 | 978 break; |
32984 | 979 |
33766 | 980 case MPLAYER_SET_FONT_OSDSCALE: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
981 osd_font_scale_factor = value; |
36658 | 982 mplayer(MPLAYER_LOAD_FONT, 0, 0); |
33744 | 983 break; |
32984 | 984 |
33766 | 985 case MPLAYER_SET_FONT_ENCODING: |
33739 | 986 nfree(subtitle_font_encoding); |
36842 | 987 subtitle_font_encoding = gstrdup(data); |
36658 | 988 mplayer(MPLAYER_LOAD_FONT, 0, 0); |
33744 | 989 break; |
32984 | 990 |
33766 | 991 case MPLAYER_SET_FONT_AUTOSCALE: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
992 subtitle_autoscale = (int)value; |
36658 | 993 mplayer(MPLAYER_LOAD_FONT, 0, 0); |
994 break; | |
995 | |
996 case MPLAYER_LOAD_FONT: | |
997 #ifdef CONFIG_FREETYPE | |
998 set_fontconfig(); | |
999 | |
1000 force_load_font = 1; | |
1001 #else | |
1002 free_font_desc(vo_font); | |
1003 | |
1004 if (font_name) { | |
1005 vo_font = read_font_desc(font_name, font_factor, 0); | |
1006 | |
1007 if (!vo_font) | |
1008 gmp_msg(MSGT_GPLAYER, MSGL_ERR, MSGTR_CantLoadFont, font_name); | |
1009 } else { | |
1010 char *fname = get_path("font/font.desc"); | |
1011 | |
1012 setdup(&font_name, fname); | |
1013 free(fname); | |
1014 vo_font = read_font_desc(font_name, font_factor, 0); | |
1015 | |
1016 if (!vo_font) { | |
1017 setdup(&font_name, MPLAYER_DATADIR "/font/font.desc"); | |
1018 vo_font = read_font_desc(font_name, font_factor, 0); | |
1019 } | |
1020 } | |
1021 #endif | |
33744 | 1022 break; |
32984 | 1023 |
33766 | 1024 case MPLAYER_SET_SUB_ENCODING: |
33739 | 1025 nfree(sub_cp); |
36842 | 1026 sub_cp = gstrdup(data); |
32984 | 1027 break; |
1028 | |
33766 | 1029 case MPLAYER_SET_EXTRA_STEREO: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1030 gtkAOExtraStereoMul = value; |
36461 | 1031 afilter = mpctx_get_afilter(guiInfo.mpcontext); |
1032 if (afilter) | |
1033 af_control_any_rev(afilter, AF_CONTROL_ES_MUL | AF_CONTROL_SET, >kAOExtraStereoMul); | |
33744 | 1034 break; |
32984 | 1035 |
33766 | 1036 case MPLAYER_SET_PANSCAN: |
32984 | 1037 { |
1038 mp_cmd_t *mp_cmd; | |
1039 | |
1040 mp_cmd = calloc(1, sizeof(*mp_cmd)); | |
1041 mp_cmd->id = MP_CMD_PANSCAN; | |
1042 mp_cmd->name = strdup("panscan"); | |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1043 mp_cmd->args[0].v.f = value; |
32984 | 1044 mp_cmd->args[1].v.i = 1; |
1045 mp_input_queue_cmd(mp_cmd); | |
1046 } | |
33744 | 1047 break; |
32984 | 1048 |
33766 | 1049 case MPLAYER_SET_AUTO_QUALITY: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1050 auto_quality = (int)value; |
33744 | 1051 break; |
32984 | 1052 |
34684 | 1053 /* set equalizers */ |
32984 | 1054 |
33766 | 1055 case MPLAYER_SET_CONTRAST: |
33555 | 1056 if (guiInfo.sh_video) |
36842 | 1057 set_video_colors(guiInfo.sh_video, "contrast", value); |
33744 | 1058 break; |
32984 | 1059 |
33766 | 1060 case MPLAYER_SET_BRIGHTNESS: |
33555 | 1061 if (guiInfo.sh_video) |
36842 | 1062 set_video_colors(guiInfo.sh_video, "brightness", value); |
33744 | 1063 break; |
32984 | 1064 |
33766 | 1065 case MPLAYER_SET_HUE: |
33555 | 1066 if (guiInfo.sh_video) |
36842 | 1067 set_video_colors(guiInfo.sh_video, "hue", value); |
33744 | 1068 break; |
32984 | 1069 |
33766 | 1070 case MPLAYER_SET_SATURATION: |
33555 | 1071 if (guiInfo.sh_video) |
36842 | 1072 set_video_colors(guiInfo.sh_video, "saturation", value); |
33744 | 1073 break; |
32984 | 1074 |
33766 | 1075 case MPLAYER_SET_EQUALIZER: |
32984 | 1076 { |
23077 | 1077 af_control_ext_t tmp; |
32984 | 1078 |
36461 | 1079 afilter = mpctx_get_afilter(guiInfo.mpcontext); |
1080 | |
32984 | 1081 if (eq) { |
1082 gtkEquChannels[eq->channel][eq->band] = eq->gain; | |
1083 tmp.ch = eq->channel; | |
1084 tmp.arg = gtkEquChannels[eq->channel]; | |
1085 | |
36461 | 1086 if (afilter) |
1087 af_control_any_rev(afilter, AF_CONTROL_EQUALIZER_GAIN | AF_CONTROL_SET, &tmp); | |
32984 | 1088 } else { |
33693
006a2db8bd55
Use unsigned index variable for comparison with array size.
ib
parents:
33692
diff
changeset
|
1089 unsigned int i; |
32984 | 1090 |
1091 memset(gtkEquChannels, 0, sizeof(gtkEquChannels)); | |
1092 | |
36461 | 1093 if (afilter) { |
33689
8d0290220239
Replace numeric constants for gtkEquChannels array size.
ib
parents:
33688
diff
changeset
|
1094 for (i = 0; i < FF_ARRAY_ELEMS(gtkEquChannels); i++) { |
32984 | 1095 tmp.ch = i; |
1096 tmp.arg = gtkEquChannels[i]; | |
36461 | 1097 af_control_any_rev(afilter, AF_CONTROL_EQUALIZER_GAIN | AF_CONTROL_SET, &tmp); |
32984 | 1098 } |
1099 } | |
1100 } | |
1101 | |
33744 | 1102 break; |
32984 | 1103 } |
33768 | 1104 |
1105 case MPLAYER_EXIT_GUI: | |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1106 exit_player_with_rc((enum exit_reason)value, (enum exit_reason)value >= EXIT_ERROR); |
33768 | 1107 break; |
32984 | 1108 } |
23077 | 1109 } |
1110 | |
33790
ab6d06f5b98b
Add const to some string pointer arguments that will not be modified.
ib
parents:
33775
diff
changeset
|
1111 void mplayerLoadSubtitle(const char *name) |
33745 | 1112 { |
35495 | 1113 if (guiInfo.Playing == GUI_STOP) |
33745 | 1114 return; |
1115 | |
1116 if (subdata) { | |
36694 | 1117 mp_msg(MSGT_GPLAYER, MSGL_INFO, MSGTR_GUI_MSG_RemovingSubtitle); |
33745 | 1118 |
1119 sub_free(subdata); | |
1120 subdata = NULL; | |
1121 vo_sub = NULL; | |
1122 | |
1123 if (vo_osd_list) { | |
1124 int len; | |
1125 mp_osd_obj_t *osd; | |
1126 | |
1127 osd = vo_osd_list; | |
1128 | |
1129 while (osd) { | |
1130 if (osd->type == OSDTYPE_SUBTITLE) | |
1131 break; | |
1132 | |
1133 osd = osd->next; | |
1134 } | |
1135 | |
1136 if (osd && (osd->flags & OSDFLAG_VISIBLE)) { | |
1137 len = osd->stride * (osd->bbox.y2 - osd->bbox.y1); | |
1138 memset(osd->bitmap_buffer, 0, len); | |
1139 memset(osd->alpha_buffer, 0, len); | |
1140 } | |
1141 } | |
1142 } | |
1143 | |
1144 if (name) { | |
36694 | 1145 mp_msg(MSGT_GPLAYER, MSGL_INFO, MSGTR_GUI_MSG_LoadingSubtitle, name); |
33745 | 1146 |
33775 | 1147 subdata = sub_read_file(name, (guiInfo.sh_video ? guiInfo.sh_video->fps : 0)); |
33745 | 1148 |
1149 if (!subdata) | |
1150 gmp_msg(MSGT_GPLAYER, MSGL_ERR, MSGTR_CantLoadSub, name); | |
1151 | |
1152 sub_name = (malloc(2 * sizeof(char *))); // when mplayer will be restarted | |
1153 sub_name[0] = strdup(name); // sub_name[0] will be read | |
1154 sub_name[1] = NULL; | |
1155 } | |
1156 | |
1157 update_set_of_subtitles(); | |
1158 } | |
1159 | |
33023 | 1160 // NOTE TO MYSELF: This function is nonsense. |
33289 | 1161 // MPlayer should pass messages to the GUI |
1162 // which must decide then which message has | |
1163 // to be shown (MSGL_FATAL, for example). | |
1164 // But with this function it is at least | |
1165 // possible to show GUI's very critical or | |
1166 // abort messages. | |
33023 | 1167 void gmp_msg(int mod, int lev, const char *format, ...) |
1168 { | |
1169 char msg[512]; | |
1170 va_list va; | |
1171 | |
1172 va_start(va, format); | |
1173 vsnprintf(msg, sizeof(msg), format, va); | |
1174 va_end(va); | |
1175 | |
36644
8d39d6874ec0
Do not use non-literal arguments for mp_msg format string
al
parents:
36461
diff
changeset
|
1176 mp_msg(mod, lev, "%s", msg); |
33023 | 1177 |
1178 if (mp_msg_test(mod, lev)) | |
36036 | 1179 gtkMessageBox(MSGBOX_FATAL, msg); |
33023 | 1180 } |