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