Mercurial > mplayer.hg
annotate gui/interface.c @ 36508:449868d26489
vo_bl: Do memory allocation only in one place.
This avoids duplicating code.
author | reimar |
---|---|
date | Sat, 18 Jan 2014 13:43:10 +0000 |
parents | ed153683310d |
children | 8d39d6874ec0 |
rev | line source |
---|---|
26458 | 1 /* |
2 * This file is part of MPlayer. | |
3 * | |
4 * MPlayer is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; either version 2 of the License, or | |
7 * (at your option) any later version. | |
8 * | |
9 * MPlayer is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License along | |
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
17 */ | |
23077 | 18 |
33754 | 19 #include <stdarg.h> |
20 #include <stdio.h> | |
23077 | 21 #include <stdlib.h> |
22 #include <string.h> | |
23 | |
32984 | 24 #include "interface.h" |
35525 | 25 #include "app/app.h" |
36429 | 26 #include "app/cfg.h" |
35525 | 27 #include "app/gui.h" |
35529 | 28 #include "dialog/dialog.h" |
32984 | 29 #include "skin/skin.h" |
35772 | 30 #include "ui/actions.h" |
35528 | 31 #include "ui/ui.h" |
33741 | 32 #include "util/list.h" |
33739 | 33 #include "util/mem.h" |
33737 | 34 #include "util/string.h" |
23077 | 35 #include "wm/ws.h" |
36 #include "wm/wsxdnd.h" | |
37 | |
38 #include "access_mpcontext.h" | |
35462 | 39 #include "codec-cfg.h" |
32984 | 40 #include "config.h" |
23077 | 41 #include "help_mp.h" |
36032 | 42 #include "mixer.h" |
43 #include "mp_msg.h" | |
44 #include "mpcommon.h" | |
45 #include "mplayer.h" | |
46 #include "path.h" | |
32984 | 47 #include "input/input.h" |
48 #include "libaf/equalizer.h" | |
33689
8d0290220239
Replace numeric constants for gtkEquChannels array size.
ib
parents:
33688
diff
changeset
|
49 #include "libavutil/common.h" |
32984 | 50 #include "libmpcodecs/dec_audio.h" |
51 #include "libmpcodecs/dec_video.h" | |
52 #include "libmpcodecs/vd.h" | |
53 #include "libmpcodecs/vf.h" | |
33398 | 54 #include "libvo/video_out.h" |
32984 | 55 #include "libvo/x11_common.h" |
36292 | 56 #include "osdep/timer.h" |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
57 #ifdef CONFIG_DVDREAD |
23077 | 58 #include "stream/stream_dvd.h" |
59 #endif | |
35523 | 60 #include "sub/font_load.h" |
61 #include "sub/sub.h" | |
62 #include "sub/subreader.h" | |
23077 | 63 |
35524 | 64 /** |
65 * @brief Initialize interface data. | |
66 */ | |
33662 | 67 guiInterface_t guiInfo = { |
35430
2d55540614a9
Move uiProcessNextInPlaylist to the guiInfo structure.
ib
parents:
35429
diff
changeset
|
68 .StreamType = STREAMTYPE_DUMMY, |
2d55540614a9
Move uiProcessNextInPlaylist to the guiInfo structure.
ib
parents:
35429
diff
changeset
|
69 .Balance = 50.0f, |
35493 | 70 .PlaylistNext = True |
33662 | 71 }; |
23077 | 72 |
36049 | 73 static int guiInitialized; |
33265 | 74 |
33745 | 75 /* MPlayer -> GUI */ |
76 | |
35524 | 77 /** |
78 * @brief Initialize and start the GUI. | |
79 */ | |
32984 | 80 void guiInit(void) |
23077 | 81 { |
35794 | 82 int ret; |
34664
4df4d842d5fb
Remove global variable pointing to current playlist item.
ib
parents:
34663
diff
changeset
|
83 plItem *playlist; |
23077 | 84 |
33530 | 85 mp_msg(MSGT_GPLAYER, MSGL_V, "GUI init.\n"); |
86 | |
35627 | 87 /* check options */ |
88 | |
34403 | 89 if (!cdrom_device) |
90 cdrom_device = strdup(DEFAULT_CDROM_DEVICE); | |
91 if (!dvd_device) | |
92 dvd_device = strdup(DEFAULT_DVD_DEVICE); | |
35625 | 93 #ifdef CONFIG_DXR3 |
32984 | 94 if (!gtkDXR3Device) |
95 gtkDXR3Device = strdup("/dev/em8300-0"); | |
35625 | 96 #endif |
32927 | 97 |
32984 | 98 if (stream_cache_size > 0) { |
35493 | 99 gtkCacheOn = True; |
32984 | 100 gtkCacheSize = stream_cache_size; |
101 } else if (stream_cache_size == 0) | |
35493 | 102 gtkCacheOn = False; |
32984 | 103 |
104 if (autosync && (autosync != gtkAutoSync)) { | |
35493 | 105 gtkAutoSyncOn = True; |
32984 | 106 gtkAutoSync = autosync; |
107 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
108 |
32984 | 109 gtkASS.enabled = ass_enabled; |
110 gtkASS.use_margins = ass_use_margins; | |
111 gtkASS.top_margin = ass_top_margin; | |
112 gtkASS.bottom_margin = ass_bottom_margin; | |
23077 | 113 |
35627 | 114 /* initialize graphical user interfaces */ |
115 | |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
116 wsInit(mDisplay); |
35629 | 117 gtkInit(mDisplayName); |
32984 | 118 |
34684 | 119 /* load skin */ |
32984 | 120 |
36043 | 121 skinDirInHome = get_path("skins"); |
122 skinDirInData = MPLAYER_DATADIR "/skins"; | |
32984 | 123 |
33985 | 124 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] skin directory #1: %s\n", skinDirInHome); |
36043 | 125 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] skin directory #2: %s\n", skinDirInData); |
32984 | 126 |
127 if (!skinName) | |
128 skinName = strdup("default"); | |
129 | |
35794 | 130 ret = skinRead(skinName); |
32984 | 131 |
35794 | 132 if (ret == -1 && strcmp(skinName, "default") != 0) { |
32984 | 133 mp_msg(MSGT_GPLAYER, MSGL_WARN, MSGTR_SKIN_SKINCFG_SelectedSkinNotFound, skinName); |
134 | |
135 skinName = strdup("default"); | |
35794 | 136 ret = skinRead(skinName); |
32984 | 137 } |
138 | |
35794 | 139 switch (ret) { |
32984 | 140 case -1: |
33024 | 141 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_SKIN_SKINCFG_SkinNotFound, skinName); |
33768 | 142 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); |
23077 | 143 |
32984 | 144 case -2: |
33025 | 145 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_SKIN_SKINCFG_SkinCfgError, skinName); |
33768 | 146 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); |
32984 | 147 } |
148 | |
34684 | 149 /* initialize windows */ |
32984 | 150 |
151 if (gui_save_pos) { | |
33218
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33053
diff
changeset
|
152 if (gui_main_pos_x != -3) |
33555 | 153 guiApp.main.x = gui_main_pos_x; |
33218
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33053
diff
changeset
|
154 if (gui_main_pos_y != -3) |
33555 | 155 guiApp.main.y = gui_main_pos_y; |
34697 | 156 if (gui_video_pos_x != -3) |
157 guiApp.video.x = gui_video_pos_x; | |
158 if (gui_video_pos_y != -3) | |
159 guiApp.video.y = gui_video_pos_y; | |
32984 | 160 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
161 |
32984 | 162 if (WinID > 0) { |
34697 | 163 guiApp.videoWindow.Parent = WinID; |
164 guiApp.video.x = 0; | |
165 guiApp.video.y = 0; | |
32984 | 166 } |
23077 | 167 |
32984 | 168 if (guiWinID >= 0) |
33555 | 169 guiApp.mainWindow.Parent = guiWinID; |
23077 | 170 |
35780 | 171 uiMainInit(); // main window must be first! |
35781 | 172 uiVideoInit(); // video window must be second! |
35780 | 173 uiPlaybarInit(); |
174 uiMenuInit(); | |
23077 | 175 |
35788
e3dcd5854344
Move video window initialization code to uiVideoInit().
ib
parents:
35781
diff
changeset
|
176 WinID = guiApp.videoWindow.WindowID; |
32984 | 177 |
33555 | 178 btnModify(evSetVolume, guiInfo.Volume); |
179 btnModify(evSetBalance, guiInfo.Balance); | |
180 btnModify(evSetMoviePosition, guiInfo.Position); | |
23077 | 181 |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
182 wsWindowVisibility(&guiApp.mainWindow, wsShowWindow); |
23077 | 183 |
32984 | 184 if (gtkShowVideoWindow) { |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
185 wsWindowVisibility(&guiApp.videoWindow, wsShowWindow); |
33960 | 186 |
35654 | 187 guiInfo.VideoWindow = True; |
23077 | 188 |
33960 | 189 if (gtkLoadFullscreen) |
33555 | 190 uiFullScreen(); |
33960 | 191 } else |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
192 wsWindowBackground(&guiApp.videoWindow, 0, 0, 0); |
32984 | 193 |
33960 | 194 if (gtkLoadFullscreen) |
33978 | 195 btnSet(evFullScreen, btnPressed); |
32984 | 196 |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
197 guiInfo.Playing = GUI_STOP; |
33609 | 198 |
34664
4df4d842d5fb
Remove global variable pointing to current playlist item.
ib
parents:
34663
diff
changeset
|
199 playlist = listMgr(PLAYLIST_ITEM_GET_CURR, 0); |
4df4d842d5fb
Remove global variable pointing to current playlist item.
ib
parents:
34663
diff
changeset
|
200 |
4df4d842d5fb
Remove global variable pointing to current playlist item.
ib
parents:
34663
diff
changeset
|
201 if (playlist && !filename) { |
35452 | 202 uiSetFile(playlist->path, playlist->name, STREAMTYPE_FILE); |
35488
9ef9131adfe5
Provide a number of tracks information for files in playlists.
ib
parents:
35484
diff
changeset
|
203 guiInfo.Tracks = (int)listMgr(PLAYLIST_ITEM_GET_POS, 0); |
35489 | 204 guiInfo.Track = 1; |
205 filename = NULL; // don't start playing | |
34064 | 206 } |
32984 | 207 |
208 if (subdata) | |
33897 | 209 setdup(&guiInfo.SubtitleFilename, subdata->filename); |
32984 | 210 |
33763 | 211 mplayerLoadFont(); |
33265 | 212 |
36049 | 213 guiInitialized = True; |
23077 | 214 } |
215 | |
35524 | 216 /** |
217 * @brief Stop and finalize the GUI. | |
218 */ | |
32984 | 219 void guiDone(void) |
23077 | 220 { |
36049 | 221 if (guiInitialized) { |
33308 | 222 if (gui_save_pos) { |
34698 | 223 gui_main_pos_x = guiApp.mainWindow.X; |
224 gui_main_pos_y = guiApp.mainWindow.Y; | |
35664 | 225 gui_video_pos_x = guiApp.videoWindow.X; |
226 gui_video_pos_y = guiApp.videoWindow.Y; | |
33308 | 227 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
228 |
33308 | 229 ass_enabled = gtkASS.enabled; |
230 ass_use_margins = gtkASS.use_margins; | |
231 ass_top_margin = gtkASS.top_margin; | |
232 ass_bottom_margin = gtkASS.bottom_margin; | |
23077 | 233 |
33308 | 234 cfg_write(); |
35746 | 235 |
35796
497a1c45a597
Add uiMainDone(), uiVideoDone(), uiPlaybarDone() and uiMenuDone().
ib
parents:
35794
diff
changeset
|
236 if (guiApp.menuIsPresent) |
497a1c45a597
Add uiMainDone(), uiVideoDone(), uiPlaybarDone() and uiMenuDone().
ib
parents:
35794
diff
changeset
|
237 uiMenuDone(); |
497a1c45a597
Add uiMainDone(), uiVideoDone(), uiPlaybarDone() and uiMenuDone().
ib
parents:
35794
diff
changeset
|
238 if (guiApp.playbarIsPresent) |
497a1c45a597
Add uiMainDone(), uiVideoDone(), uiPlaybarDone() and uiMenuDone().
ib
parents:
35794
diff
changeset
|
239 uiPlaybarDone(); |
497a1c45a597
Add uiMainDone(), uiVideoDone(), uiPlaybarDone() and uiMenuDone().
ib
parents:
35794
diff
changeset
|
240 |
497a1c45a597
Add uiMainDone(), uiVideoDone(), uiPlaybarDone() and uiMenuDone().
ib
parents:
35794
diff
changeset
|
241 uiVideoDone(); |
497a1c45a597
Add uiMainDone(), uiVideoDone(), uiPlaybarDone() and uiMenuDone().
ib
parents:
35794
diff
changeset
|
242 uiMainDone(); |
35746 | 243 |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
244 wsDone(); |
33307 | 245 } |
33263 | 246 |
35549 | 247 uiUnsetFile(); |
34663 | 248 listMgr(PLAYLIST_DELETE, 0); |
249 listMgr(URLLIST_DELETE, 0); | |
35550 | 250 appFreeStruct(); |
33542 | 251 free(guiIcon.collection); |
33307 | 252 |
253 if (gui_conf) { | |
254 m_config_free(gui_conf); | |
255 gui_conf = NULL; | |
256 } | |
33530 | 257 |
258 mp_msg(MSGT_GPLAYER, MSGL_V, "GUI done.\n"); | |
33263 | 259 } |
260 | |
32984 | 261 static void add_vf(char *str) |
23077 | 262 { |
32984 | 263 void *p; |
264 | |
265 if (vf_settings) { | |
266 int i = 0; | |
267 | |
268 while (vf_settings[i].name) { | |
269 if (!gstrcmp(vf_settings[i++].name, str)) { | |
270 i = -1; | |
271 break; | |
272 } | |
273 } | |
274 | |
275 if (i != -1) { | |
276 p = realloc(vf_settings, (i + 2) * sizeof(m_obj_settings_t)); | |
32712 | 277 |
32984 | 278 if (!p) |
279 return; | |
280 | |
281 vf_settings = p; | |
282 vf_settings[i].name = strdup(str); | |
283 vf_settings[i].attribs = NULL; | |
284 vf_settings[i + 1].name = NULL; | |
285 } | |
286 } else { | |
287 vf_settings = malloc(2 * sizeof(m_obj_settings_t)); | |
288 vf_settings[0].name = strdup(str); | |
289 vf_settings[0].attribs = NULL; | |
290 vf_settings[1].name = NULL; | |
32712 | 291 } |
292 | |
33530 | 293 mp_msg(MSGT_GPLAYER, MSGL_INFO, MSGTR_AddingVideoFilter, str); |
23077 | 294 } |
295 | |
35524 | 296 /** |
297 * @brief Issue a command to the GUI. | |
298 * | |
299 * @note The GUI is controlled by giving it commands. | |
300 * | |
301 * @param what command to be performed | |
302 * @param data pointer to data needed for the command | |
303 * | |
304 * @return #True (ok) or #False (error) | |
305 */ | |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
306 int gui(int what, void *data) |
23077 | 307 { |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
308 #ifdef CONFIG_DVDREAD |
33687 | 309 dvd_priv_t *dvd; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
310 #endif |
34339 | 311 int msg, state; |
36456 | 312 stream_t *stream = NULL; |
36455 | 313 sh_audio_t *sh_audio; |
36454 | 314 mixer_t *mixer; |
36457 | 315 plItem *next = NULL; |
23077 | 316 |
33726 | 317 switch (what) { |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
318 case GUI_SET_CONTEXT: |
35541 | 319 |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
320 guiInfo.mpcontext = data; |
23077 | 321 break; |
32984 | 322 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
323 case GUI_SET_STATE: |
32984 | 324 |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
325 switch ((int)data) { |
33631 | 326 case GUI_STOP: |
33614 | 327 case GUI_PLAY: |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
328 // if ( !gtkShowVideoWindow ) wsWindowVisibility( &guiApp.videoWindow,wsHideWindow ); |
33614 | 329 case GUI_PAUSE: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
330 guiInfo.Playing = (int)data; |
32984 | 331 break; |
332 } | |
333 | |
33555 | 334 uiState(); |
23077 | 335 break; |
32984 | 336 |
36294 | 337 case GUI_REDRAW: |
338 | |
339 uiEvent(ivRedraw, 0); | |
35541 | 340 |
33901 | 341 if (!guiInfo.Playing || !guiInfo.VideoWindow) |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
342 wsEvents(); |
36068 | 343 /* else it's handled by the vo driver calling GUI_HANDLE_X_EVENT */ |
35541 | 344 |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
345 wsMouseAutohide(); |
36070 | 346 gtkEvents(); |
35541 | 347 |
33732 | 348 break; |
349 | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
350 case GUI_RUN_COMMAND: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
351 |
33985 | 352 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] GUI_RUN_COMMAND: %d\n", (int)data); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
353 |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
354 switch ((int)data) { |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
355 case MP_CMD_VO_FULLSCREEN: |
35773 | 356 uiEvent(evFullScreen, True); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
357 break; |
33696
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
358 |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
359 case MP_CMD_PLAY_TREE_STEP: |
35773 | 360 uiEvent(evNext, 0); |
33696
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
361 break; |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
362 |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
363 case -MP_CMD_PLAY_TREE_STEP: |
35773 | 364 uiEvent(evPrev, 0); |
33696
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
365 break; |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
366 |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
367 case MP_CMD_STOP: |
35773 | 368 uiEvent(evStop, 0); |
33696
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
369 break; |
33697 | 370 |
371 case MP_CMD_QUIT: | |
35773 | 372 uiEvent(evExit, 0); |
33697 | 373 break; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
374 } |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
375 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
376 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
377 |
34339 | 378 case GUI_RUN_MESSAGE: |
35541 | 379 |
34339 | 380 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] GUI_RUN_MESSAGE: %s\n", (const char *)data); |
381 msg = appFindMessage((const char *)data); | |
35541 | 382 |
34458 | 383 if ((msg == evMenu) || appFindItem(msg)) |
35773 | 384 uiEvent(msg, 0); |
35541 | 385 |
34339 | 386 break; |
387 | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
388 case GUI_PREPARE: |
32984 | 389 |
36292 | 390 uiEvent(ivRedraw, True); |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
391 wsMouseVisibility(&guiApp.videoWindow, wsHideMouseCursor); |
36292 | 392 usec_sleep(20000); |
393 wsEvents(); | |
32984 | 394 |
34052 | 395 if (guiInfo.NewPlay == GUI_FILE_NEW) { |
396 audio_id = -1; | |
397 video_id = -1; | |
398 dvdsub_id = -1; | |
399 vobsub_id = -1; | |
400 | |
401 stream_cache_size = -1; | |
402 autosync = 0; | |
403 force_fps = 0; | |
404 } | |
34032 | 405 |
33555 | 406 switch (guiInfo.StreamType) { |
34073 | 407 case STREAMTYPE_FILE: |
408 case STREAMTYPE_STREAM: | |
35484 | 409 filename = guiInfo.Filename; |
32984 | 410 break; |
411 | |
34387 | 412 case STREAMTYPE_CDDA: |
413 { | |
414 char tmp[512]; | |
415 | |
416 sprintf(tmp, "cdda://%d", guiInfo.Track); | |
35452 | 417 uiSetFile(NULL, tmp, SAME_STREAMTYPE); |
34387 | 418 } |
419 break; | |
420 | |
32984 | 421 case STREAMTYPE_VCD: |
422 { | |
423 char tmp[512]; | |
424 | |
33874 | 425 sprintf(tmp, "vcd://%d", guiInfo.Track); |
35452 | 426 uiSetFile(NULL, tmp, SAME_STREAMTYPE); |
32984 | 427 } |
428 break; | |
429 | |
430 case STREAMTYPE_DVD: | |
431 { | |
432 char tmp[512]; | |
433 | |
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
434 sprintf(tmp, "dvd://%d", guiInfo.Track); |
35452 | 435 uiSetFile(NULL, tmp, SAME_STREAMTYPE); |
32984 | 436 } |
35168 | 437 #ifdef CONFIG_DVDREAD |
33555 | 438 dvd_chapter = guiInfo.Chapter; |
439 dvd_angle = guiInfo.Angle; | |
35168 | 440 #endif |
32984 | 441 break; |
36429 | 442 |
443 case STREAMTYPE_TV: | |
444 case STREAMTYPE_DVB: | |
445 { | |
446 char tmp[512]; | |
447 | |
448 sprintf(tmp, "%s://", guiTV[gui_tv_digital].SchemeName); | |
449 uiSetFile(NULL, tmp, SAME_STREAMTYPE); | |
450 } | |
32984 | 451 } |
452 | |
34684 | 453 /* video opts */ |
32984 | 454 |
455 if (!video_driver_list) { | |
456 int i = 0; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
457 |
32984 | 458 while (video_out_drivers[i++]) { |
459 if (video_out_drivers[i - 1]->control(VOCTRL_GUISUPPORT, NULL) == VO_TRUE) { | |
34610 | 460 listSet(&video_driver_list, (char *)video_out_drivers[i - 1]->info->short_name); |
32984 | 461 break; |
462 } | |
463 } | |
464 } | |
465 | |
466 if (!video_driver_list && !video_driver_list[0]) { | |
33024 | 467 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_IDFGCVD); |
33768 | 468 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); |
32984 | 469 } |
470 | |
471 { | |
472 int i = 0; | |
473 | |
33901 | 474 guiInfo.VideoWindow = True; |
32984 | 475 |
476 while (video_out_drivers[i++]) { | |
477 if (video_out_drivers[i - 1]->control(VOCTRL_GUISUPPORT, NULL) == VO_TRUE) { | |
478 if ((video_driver_list && !gstrcmp(video_driver_list[0], (char *)video_out_drivers[i - 1]->info->short_name)) && (video_out_drivers[i - 1]->control(VOCTRL_GUI_NOWINDOW, NULL) == VO_TRUE)) { | |
33901 | 479 guiInfo.VideoWindow = False; |
32984 | 480 break; |
481 } | |
482 } | |
483 } | |
484 } | |
485 | |
486 if (video_driver_list && !gstrcmp(video_driver_list[0], "dxr3")) | |
33555 | 487 if (guiInfo.StreamType != STREAMTYPE_DVD && guiInfo.StreamType != STREAMTYPE_VCD) |
32984 | 488 if (gtkVfLAVC) |
489 add_vf("lavc"); | |
490 | |
491 if (gtkVfPP) | |
492 add_vf("pp"); | |
493 | |
34684 | 494 /* audio opts */ |
32984 | 495 |
496 // if ( ao_plugin_cfg.plugin_list ) { free( ao_plugin_cfg.plugin_list ); ao_plugin_cfg.plugin_list=NULL; } | |
497 if (gtkAONorm) | |
34610 | 498 listRepl(&af_cfg.list, "volnorm", "volnorm"); |
32984 | 499 |
500 if (gtkEnableAudioEqualizer) | |
34610 | 501 listRepl(&af_cfg.list, "equalizer", "equalizer"); |
32984 | 502 |
503 if (gtkAOExtraStereo) { | |
504 char *name; | |
505 | |
506 name = malloc(12 + 20 + 1); | |
507 snprintf(name, 12 + 20, "extrastereo=%f", gtkAOExtraStereoMul); | |
508 name[12 + 20] = 0; | |
34610 | 509 listRepl(&af_cfg.list, "extrastereo", name); |
32984 | 510 free(name); |
511 } | |
512 | |
513 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "oss", 3)) { | |
514 mixer_device = gtkAOOSSMixer; | |
515 mixer_channel = gtkAOOSSMixerChannel; | |
516 | |
517 if (gtkAOOSSDevice) { | |
34625 | 518 char *tmp; |
34624 | 519 |
32984 | 520 tmp = calloc(1, strlen(gtkAOOSSDevice) + 7); |
521 sprintf(tmp, "oss:%s", gtkAOOSSDevice); | |
34625 | 522 listSet(&audio_driver_list, tmp); |
523 free(tmp); | |
34624 | 524 } |
32984 | 525 } |
526 | |
527 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "alsa", 4)) { | |
528 mixer_device = gtkAOALSAMixer; | |
529 mixer_channel = gtkAOALSAMixerChannel; | |
530 | |
531 if (gtkAOALSADevice) { | |
34625 | 532 char *tmp; |
34624 | 533 |
32984 | 534 tmp = calloc(1, strlen(gtkAOALSADevice) + 14); |
535 sprintf(tmp, "alsa:device=%s", gtkAOALSADevice); | |
34625 | 536 listSet(&audio_driver_list, tmp); |
537 free(tmp); | |
34624 | 538 } |
32984 | 539 } |
540 | |
541 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "sdl", 3)) { | |
34624 | 542 if (gtkAOSDLDriver) { |
34625 | 543 char *tmp; |
32984 | 544 |
545 tmp = calloc(1, strlen(gtkAOSDLDriver) + 10); | |
546 sprintf(tmp, "sdl:%s", gtkAOSDLDriver); | |
34625 | 547 listSet(&audio_driver_list, tmp); |
548 free(tmp); | |
34624 | 549 } |
32984 | 550 } |
551 | |
552 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "esd", 3)) { | |
34624 | 553 if (gtkAOESDDevice) { |
34625 | 554 char *tmp; |
32984 | 555 |
556 tmp = calloc(1, strlen(gtkAOESDDevice) + 10); | |
557 sprintf(tmp, "esd:%s", gtkAOESDDevice); | |
34625 | 558 listSet(&audio_driver_list, tmp); |
559 free(tmp); | |
34624 | 560 } |
32984 | 561 } |
562 | |
34684 | 563 /* subtitle */ |
32984 | 564 |
33897 | 565 // subdata->filename=gstrdup( guiInfo.SubtitleFilename ); |
32984 | 566 stream_dump_type = 0; |
567 | |
568 if (gtkSubDumpMPSub) | |
569 stream_dump_type = 4; | |
570 | |
571 if (gtkSubDumpSrt) | |
572 stream_dump_type = 6; | |
573 | |
35493 | 574 gtkSubDumpMPSub = gtkSubDumpSrt = False; |
33763 | 575 mplayerLoadFont(); |
23077 | 576 |
34684 | 577 /* misc */ |
32984 | 578 |
579 if (gtkCacheOn) | |
580 stream_cache_size = gtkCacheSize; | |
581 | |
582 if (gtkAutoSyncOn) | |
583 autosync = gtkAutoSync; | |
23077 | 584 |
33897 | 585 if (guiInfo.AudioFilename) |
586 audio_stream = gstrdup(guiInfo.AudioFilename); | |
33894 | 587 else if (guiInfo.NewPlay == GUI_FILE_NEW) |
33739 | 588 nfree(audio_stream); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
589 |
32984 | 590 // audio_stream = NULL; |
591 | |
33555 | 592 guiInfo.NewPlay = 0; |
23077 | 593 |
32984 | 594 ass_enabled = gtkASS.enabled; |
595 ass_use_margins = gtkASS.use_margins; | |
596 ass_top_margin = gtkASS.top_margin; | |
23077 | 597 ass_bottom_margin = gtkASS.bottom_margin; |
598 | |
32984 | 599 break; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
600 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
601 case GUI_SET_STREAM: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
602 |
34859 | 603 if (guiInfo.StreamType == STREAMTYPE_PLAYLIST) |
604 guiInfo.mpcontext->file_format = DEMUXER_TYPE_PLAYLIST; | |
36456 | 605 else { |
36457 | 606 stream = data; |
607 guiInfo.StreamType = stream->type; | |
36456 | 608 } |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
609 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
610 switch (guiInfo.StreamType) { |
34424 | 611 case STREAMTYPE_FILE: |
612 case STREAMTYPE_STREAM: | |
35488
9ef9131adfe5
Provide a number of tracks information for files in playlists.
ib
parents:
35484
diff
changeset
|
613 guiInfo.Tracks = (int)listMgr(PLAYLIST_ITEM_GET_POS, 0); |
34424 | 614 break; |
615 | |
34387 | 616 case STREAMTYPE_CDDA: |
617 guiInfo.Tracks = 0; | |
618 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
|
619 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
|
620 guiInfo.Track++; |
34387 | 621 break; |
622 | |
34077 | 623 case STREAMTYPE_VCD: |
624 guiInfo.Tracks = 0; | |
34388
9ee95c78e85f
Replace VCD's STREAM_CTRL_GET_NUM_CHAPTERS by STREAM_CTRL_GET_NUM_TITLES.
ib
parents:
34387
diff
changeset
|
625 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
|
626 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
|
627 guiInfo.Track++; |
34077 | 628 break; |
629 | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
630 case STREAMTYPE_DVD: |
34389
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
631 guiInfo.Tracks = 0; |
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
632 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
|
633 guiInfo.Chapters = 0; |
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
634 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
|
635 guiInfo.Angles = 0; |
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
636 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
|
637 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
|
638 guiInfo.Track++; |
35168 | 639 // guiInfo.Chapter will be set by mplayer |
640 guiInfo.Angle = 1; | |
641 stream_control(stream, STREAM_CTRL_GET_ANGLE, &guiInfo.Angle); | |
34454 | 642 #ifdef CONFIG_DVDREAD |
33730 | 643 dvd = stream->priv; |
33902 | 644 guiInfo.AudioStreams = dvd->nr_of_channels; |
645 memcpy(guiInfo.AudioStream, dvd->audio_streams, sizeof(dvd->audio_streams)); | |
646 guiInfo.Subtitles = dvd->nr_of_subtitles; | |
647 memcpy(guiInfo.Subtitle, dvd->subtitles, sizeof(dvd->subtitles)); | |
34454 | 648 #endif |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
649 break; |
36429 | 650 |
651 case STREAMTYPE_TV: | |
652 case STREAMTYPE_DVB: | |
36437
eb6cdd6b9b86
Update track information at GUI_SET_STREAM for CDDA and VCD.
ib
parents:
36430
diff
changeset
|
653 guiInfo.Tracks = guiInfo.Track = 1; |
36429 | 654 break; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
655 } |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
656 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
657 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
658 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
659 case GUI_SET_VIDEO: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
660 |
34684 | 661 /* video */ |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
662 |
36265 | 663 guiInfo.sh_video = data; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
664 |
35462 | 665 nfree(guiInfo.CodecName); |
666 | |
667 if (guiInfo.sh_video) | |
668 guiInfo.CodecName = strdup(guiInfo.sh_video->codec->name); | |
669 | |
36429 | 670 state = (isSeekableStreamtype ? btnReleased : btnDisabled); |
34074
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
671 btnSet(evForward10sec, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
672 btnSet(evBackward10sec, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
673 btnSet(evForward1min, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
674 btnSet(evBackward1min, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
675 btnSet(evForward10min, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
676 btnSet(evBackward10min, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
677 btnSet(evSetMoviePosition, state); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
678 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
679 if (video_driver_list && !gstrcmp(video_driver_list[0], "dxr3") && (((demuxer_t *)mpctx_get_demuxer(guiInfo.mpcontext))->file_format != DEMUXER_TYPE_MPEG_PS) && !gtkVfLAVC) { |
36036 | 680 gtkMessageBox(MSGBOX_FATAL, MSGTR_NEEDLAVC); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
681 return False; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
682 } |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
683 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
684 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
685 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
686 case GUI_SET_AUDIO: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
687 |
36455 | 688 sh_audio = data; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
689 |
36455 | 690 guiInfo.AudioChannels = sh_audio ? sh_audio->channels : 0; |
691 | |
692 if (sh_audio && !guiInfo.sh_video) { | |
33901 | 693 guiInfo.VideoWindow = False; |
35454 | 694 guiInfo.VideoWidth = 0; |
695 guiInfo.VideoHeight = 0; | |
696 } | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
697 |
36454 | 698 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
|
699 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
700 if (gtkEnableAudioEqualizer) { |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
701 equalizer_t eq; |
33693
006a2db8bd55
Use unsigned index variable for comparison with array size.
ib
parents:
33692
diff
changeset
|
702 unsigned int i, j; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
703 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
704 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
|
705 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
|
706 eq.channel = i; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
707 eq.band = j; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
708 eq.gain = gtkEquChannels[i][j]; |
33766 | 709 mplayer(MPLAYER_SET_EQUALIZER, 0, &eq); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
710 } |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
711 } |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
712 } |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
713 |
33960 | 714 // These must be done here (in the last call from MPlayer before |
715 // playback starts) and not in GUI_SETUP_VIDEO_WINDOW, because... | |
716 | |
717 // ...without video there will be no call to GUI_SETUP_VIDEO_WINDOW | |
718 if (!guiInfo.VideoWindow) { | |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
719 wsWindowVisibility(&guiApp.videoWindow, wsHideWindow); |
33978 | 720 btnSet(evFullScreen, (gtkLoadFullscreen ? btnPressed : btnReleased)); |
33960 | 721 } |
722 | |
723 // ...option variable fullscreen determines whether MPlayer will handle | |
724 // the window given by WinID as fullscreen window (and will do aspect | |
725 // scaling then) or not - quite rubbish | |
726 fullscreen = gtkLoadFullscreen; | |
727 | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
728 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
729 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
730 case GUI_SET_MIXER: |
35535 | 731 |
36454 | 732 mixer = data; |
35535 | 733 |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
734 if (mixer) { |
35537 | 735 float l, r, b; |
35542 | 736 static float last_balance = 50.0f; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
737 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
738 mixer_getvolume(mixer, &l, &r); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
739 guiInfo.Volume = FFMAX(l, r); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
740 btnModify(evSetVolume, guiInfo.Volume); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
741 |
35537 | 742 mixer_getbalance(mixer, &b); |
35544 | 743 guiInfo.Balance = (b + 1.0) * 50.0; // transform -1..1 to 0..100 |
35542 | 744 |
745 if (guiInfo.Balance != last_balance) { | |
746 l = guiInfo.Volume * (100.0 - guiInfo.Balance) / 50.0; | |
747 r = guiInfo.Volume * guiInfo.Balance / 50.0; | |
748 mixer_setvolume(mixer, FFMIN(l, guiInfo.Volume), FFMIN(r, guiInfo.Volume)); | |
749 btnModify(evSetBalance, guiInfo.Balance); | |
750 last_balance = guiInfo.Balance; | |
751 } | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
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 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
783 case GUI_END_FILE: |
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); |
34066 | 805 guiInfo.NewPlay = GUI_FILE_NEW; |
35458 | 806 guiInfo.Track = (int)listMgr(PLAYLIST_ITEM_GET_POS, next); |
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
807 } else { |
33894 | 808 if (guiInfo.NewPlay == GUI_FILE_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; |
33763 | 953 mplayerLoadFont(); |
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 |
33763 | 958 mplayerLoadFont(); |
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 |
33763 | 963 mplayerLoadFont(); |
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; |
33763 | 968 mplayerLoadFont(); |
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; |
33763 | 973 mplayerLoadFont(); |
33744 | 974 break; |
32984 | 975 |
33766 | 976 case MPLAYER_SET_FONT_ENCODING: |
33739 | 977 nfree(subtitle_font_encoding); |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
978 subtitle_font_encoding = gstrdup((char *)data); |
33763 | 979 mplayerLoadFont(); |
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; |
33763 | 984 mplayerLoadFont(); |
33744 | 985 break; |
32984 | 986 |
33766 | 987 case MPLAYER_SET_SUB_ENCODING: |
33739 | 988 nfree(sub_cp); |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
989 sub_cp = gstrdup((char *)data); |
32984 | 990 break; |
991 | |
33766 | 992 case MPLAYER_SET_EXTRA_STEREO: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
993 gtkAOExtraStereoMul = value; |
36461 | 994 afilter = mpctx_get_afilter(guiInfo.mpcontext); |
995 if (afilter) | |
996 af_control_any_rev(afilter, AF_CONTROL_ES_MUL | AF_CONTROL_SET, >kAOExtraStereoMul); | |
33744 | 997 break; |
32984 | 998 |
33766 | 999 case MPLAYER_SET_PANSCAN: |
32984 | 1000 { |
1001 mp_cmd_t *mp_cmd; | |
1002 | |
1003 mp_cmd = calloc(1, sizeof(*mp_cmd)); | |
1004 mp_cmd->id = MP_CMD_PANSCAN; | |
1005 mp_cmd->name = strdup("panscan"); | |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1006 mp_cmd->args[0].v.f = value; |
32984 | 1007 mp_cmd->args[1].v.i = 1; |
1008 mp_input_queue_cmd(mp_cmd); | |
1009 } | |
33744 | 1010 break; |
32984 | 1011 |
33766 | 1012 case MPLAYER_SET_AUTO_QUALITY: |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1013 auto_quality = (int)value; |
33744 | 1014 break; |
32984 | 1015 |
34684 | 1016 /* set equalizers */ |
32984 | 1017 |
33766 | 1018 case MPLAYER_SET_CONTRAST: |
33555 | 1019 if (guiInfo.sh_video) |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1020 set_video_colors(guiInfo.sh_video, "contrast", (int)value); |
33744 | 1021 break; |
32984 | 1022 |
33766 | 1023 case MPLAYER_SET_BRIGHTNESS: |
33555 | 1024 if (guiInfo.sh_video) |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1025 set_video_colors(guiInfo.sh_video, "brightness", (int)value); |
33744 | 1026 break; |
32984 | 1027 |
33766 | 1028 case MPLAYER_SET_HUE: |
33555 | 1029 if (guiInfo.sh_video) |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1030 set_video_colors(guiInfo.sh_video, "hue", (int)value); |
33744 | 1031 break; |
32984 | 1032 |
33766 | 1033 case MPLAYER_SET_SATURATION: |
33555 | 1034 if (guiInfo.sh_video) |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1035 set_video_colors(guiInfo.sh_video, "saturation", (int)value); |
33744 | 1036 break; |
32984 | 1037 |
33766 | 1038 case MPLAYER_SET_EQUALIZER: |
32984 | 1039 { |
23077 | 1040 af_control_ext_t tmp; |
32984 | 1041 |
36461 | 1042 afilter = mpctx_get_afilter(guiInfo.mpcontext); |
1043 | |
32984 | 1044 if (eq) { |
1045 gtkEquChannels[eq->channel][eq->band] = eq->gain; | |
1046 tmp.ch = eq->channel; | |
1047 tmp.arg = gtkEquChannels[eq->channel]; | |
1048 | |
36461 | 1049 if (afilter) |
1050 af_control_any_rev(afilter, AF_CONTROL_EQUALIZER_GAIN | AF_CONTROL_SET, &tmp); | |
32984 | 1051 } else { |
33693
006a2db8bd55
Use unsigned index variable for comparison with array size.
ib
parents:
33692
diff
changeset
|
1052 unsigned int i; |
32984 | 1053 |
1054 memset(gtkEquChannels, 0, sizeof(gtkEquChannels)); | |
1055 | |
36461 | 1056 if (afilter) { |
33689
8d0290220239
Replace numeric constants for gtkEquChannels array size.
ib
parents:
33688
diff
changeset
|
1057 for (i = 0; i < FF_ARRAY_ELEMS(gtkEquChannels); i++) { |
32984 | 1058 tmp.ch = i; |
1059 tmp.arg = gtkEquChannels[i]; | |
36461 | 1060 af_control_any_rev(afilter, AF_CONTROL_EQUALIZER_GAIN | AF_CONTROL_SET, &tmp); |
32984 | 1061 } |
1062 } | |
1063 } | |
1064 | |
33744 | 1065 break; |
32984 | 1066 } |
33768 | 1067 |
1068 case MPLAYER_EXIT_GUI: | |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1069 exit_player_with_rc((enum exit_reason)value, (enum exit_reason)value >= EXIT_ERROR); |
33768 | 1070 break; |
32984 | 1071 } |
23077 | 1072 } |
1073 | |
33763 | 1074 void mplayerLoadFont(void) |
33745 | 1075 { |
1076 #ifdef CONFIG_FREETYPE | |
1077 load_font_ft(vo_image_width, vo_image_height, &vo_font, font_name, osd_font_scale_factor); | |
1078 #else | |
1079 if (vo_font) { | |
1080 int i; | |
1081 | |
1082 free(vo_font->name); | |
1083 free(vo_font->fpath); | |
1084 | |
1085 for (i = 0; i < 16; i++) { | |
1086 if (vo_font->pic_a[i]) { | |
1087 free(vo_font->pic_a[i]->bmp); | |
1088 free(vo_font->pic_a[i]->pal); | |
1089 } | |
1090 } | |
1091 | |
1092 for (i = 0; i < 16; i++) { | |
1093 if (vo_font->pic_b[i]) { | |
1094 free(vo_font->pic_b[i]->bmp); | |
1095 free(vo_font->pic_b[i]->pal); | |
1096 } | |
1097 } | |
1098 | |
1099 free(vo_font); | |
1100 vo_font = NULL; | |
1101 } | |
1102 | |
1103 if (font_name) { | |
1104 vo_font = read_font_desc(font_name, font_factor, 0); | |
1105 | |
1106 if (!vo_font) | |
1107 gmp_msg(MSGT_GPLAYER, MSGL_ERR, MSGTR_CantLoadFont, font_name); | |
1108 } else { | |
1109 font_name = gstrdup(get_path("font/font.desc")); | |
1110 vo_font = read_font_desc(font_name, font_factor, 0); | |
1111 | |
1112 if (!vo_font) { | |
1113 nfree(font_name); | |
1114 font_name = gstrdup(MPLAYER_DATADIR "/font/font.desc"); | |
1115 vo_font = read_font_desc(font_name, font_factor, 0); | |
1116 } | |
1117 } | |
1118 #endif | |
1119 } | |
1120 | |
33790
ab6d06f5b98b
Add const to some string pointer arguments that will not be modified.
ib
parents:
33775
diff
changeset
|
1121 void mplayerLoadSubtitle(const char *name) |
33745 | 1122 { |
35495 | 1123 if (guiInfo.Playing == GUI_STOP) |
33745 | 1124 return; |
1125 | |
1126 if (subdata) { | |
1127 mp_msg(MSGT_GPLAYER, MSGL_INFO, MSGTR_DeletingSubtitles); | |
1128 | |
1129 sub_free(subdata); | |
1130 subdata = NULL; | |
1131 vo_sub = NULL; | |
1132 | |
1133 if (vo_osd_list) { | |
1134 int len; | |
1135 mp_osd_obj_t *osd; | |
1136 | |
1137 osd = vo_osd_list; | |
1138 | |
1139 while (osd) { | |
1140 if (osd->type == OSDTYPE_SUBTITLE) | |
1141 break; | |
1142 | |
1143 osd = osd->next; | |
1144 } | |
1145 | |
1146 if (osd && (osd->flags & OSDFLAG_VISIBLE)) { | |
1147 len = osd->stride * (osd->bbox.y2 - osd->bbox.y1); | |
1148 memset(osd->bitmap_buffer, 0, len); | |
1149 memset(osd->alpha_buffer, 0, len); | |
1150 } | |
1151 } | |
1152 } | |
1153 | |
1154 if (name) { | |
1155 mp_msg(MSGT_GPLAYER, MSGL_INFO, MSGTR_LoadingSubtitles, name); | |
1156 | |
33775 | 1157 subdata = sub_read_file(name, (guiInfo.sh_video ? guiInfo.sh_video->fps : 0)); |
33745 | 1158 |
1159 if (!subdata) | |
1160 gmp_msg(MSGT_GPLAYER, MSGL_ERR, MSGTR_CantLoadSub, name); | |
1161 | |
1162 sub_name = (malloc(2 * sizeof(char *))); // when mplayer will be restarted | |
1163 sub_name[0] = strdup(name); // sub_name[0] will be read | |
1164 sub_name[1] = NULL; | |
1165 } | |
1166 | |
1167 update_set_of_subtitles(); | |
1168 } | |
1169 | |
33023 | 1170 // NOTE TO MYSELF: This function is nonsense. |
33289 | 1171 // MPlayer should pass messages to the GUI |
1172 // which must decide then which message has | |
1173 // to be shown (MSGL_FATAL, for example). | |
1174 // But with this function it is at least | |
1175 // possible to show GUI's very critical or | |
1176 // abort messages. | |
33023 | 1177 void gmp_msg(int mod, int lev, const char *format, ...) |
1178 { | |
1179 char msg[512]; | |
1180 va_list va; | |
1181 | |
1182 va_start(va, format); | |
1183 vsnprintf(msg, sizeof(msg), format, va); | |
1184 va_end(va); | |
1185 | |
1186 mp_msg(mod, lev, msg); | |
1187 | |
1188 if (mp_msg_test(mod, lev)) | |
36036 | 1189 gtkMessageBox(MSGBOX_FATAL, msg); |
33023 | 1190 } |