Mercurial > mplayer.hg
annotate gui/interface.c @ 35957:7974f743eadf
Remove unnecessary #include.
author | ib |
---|---|
date | Sun, 24 Mar 2013 12:55:01 +0000 |
parents | 497a1c45a597 |
children | c667e34fb941 |
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" |
32984 | 41 #include "input/input.h" |
42 #include "libaf/equalizer.h" | |
33689
8d0290220239
Replace numeric constants for gtkEquChannels array size.
ib
parents:
33688
diff
changeset
|
43 #include "libavutil/common.h" |
32984 | 44 #include "libmpcodecs/dec_audio.h" |
45 #include "libmpcodecs/dec_video.h" | |
46 #include "libmpcodecs/vd.h" | |
47 #include "libmpcodecs/vf.h" | |
33398 | 48 #include "libvo/video_out.h" |
32984 | 49 #include "libvo/x11_common.h" |
50 #include "mixer.h" | |
51 #include "mp_msg.h" | |
32032 | 52 #include "mpcommon.h" |
30536
39a4dd7ec420
Move GUI-related extern declarations to a GUI header file.
diego
parents:
30535
diff
changeset
|
53 #include "mplayer.h" |
32984 | 54 #include "path.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 |
33265 | 71 static int initialized; |
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 |
119 skinDirInHome = get_path("skins"); | |
120 skinMPlayerDir = MPLAYER_DATADIR "/skins"; | |
121 | |
33985 | 122 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] skin directory #1: %s\n", skinDirInHome); |
123 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] skin directory #2: %s\n", skinMPlayerDir); | |
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 |
35493 | 211 initialized = True; |
23077 | 212 } |
213 | |
35524 | 214 /** |
215 * @brief Stop and finalize the GUI. | |
216 */ | |
32984 | 217 void guiDone(void) |
23077 | 218 { |
33307 | 219 if (initialized) { |
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(); |
35541 | 338 |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
339 wsMouseAutohide(); |
33732 | 340 gtkEventHandling(); |
35541 | 341 |
33732 | 342 break; |
343 | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
344 case GUI_RUN_COMMAND: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
345 |
33985 | 346 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
|
347 |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
348 switch ((int)data) { |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
349 case MP_CMD_VO_FULLSCREEN: |
35773 | 350 uiEvent(evFullScreen, True); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
351 break; |
33696
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
352 |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
353 case MP_CMD_PLAY_TREE_STEP: |
35773 | 354 uiEvent(evNext, 0); |
33696
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
355 break; |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
356 |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
357 case -MP_CMD_PLAY_TREE_STEP: |
35773 | 358 uiEvent(evPrev, 0); |
33696
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
359 break; |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
360 |
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
361 case MP_CMD_STOP: |
35773 | 362 uiEvent(evStop, 0); |
33696
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
363 break; |
33697 | 364 |
365 case MP_CMD_QUIT: | |
35773 | 366 uiEvent(evExit, 0); |
33697 | 367 break; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
368 } |
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 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
371 |
34339 | 372 case GUI_RUN_MESSAGE: |
35541 | 373 |
34339 | 374 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] GUI_RUN_MESSAGE: %s\n", (const char *)data); |
375 msg = appFindMessage((const char *)data); | |
35541 | 376 |
34458 | 377 if ((msg == evMenu) || appFindItem(msg)) |
35773 | 378 uiEvent(msg, 0); |
35541 | 379 |
34339 | 380 break; |
381 | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
382 case GUI_PREPARE: |
32984 | 383 |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
384 wsMouseVisibility(&guiApp.videoWindow, wsHideMouseCursor); |
32984 | 385 |
34052 | 386 if (guiInfo.NewPlay == GUI_FILE_NEW) { |
387 audio_id = -1; | |
388 video_id = -1; | |
389 dvdsub_id = -1; | |
390 vobsub_id = -1; | |
391 | |
392 stream_cache_size = -1; | |
393 autosync = 0; | |
394 force_fps = 0; | |
395 } | |
34032 | 396 |
33555 | 397 switch (guiInfo.StreamType) { |
34073 | 398 case STREAMTYPE_FILE: |
399 case STREAMTYPE_STREAM: | |
35484 | 400 filename = guiInfo.Filename; |
32984 | 401 break; |
402 | |
34387 | 403 case STREAMTYPE_CDDA: |
404 { | |
405 char tmp[512]; | |
406 | |
407 sprintf(tmp, "cdda://%d", guiInfo.Track); | |
35452 | 408 uiSetFile(NULL, tmp, SAME_STREAMTYPE); |
34387 | 409 } |
410 break; | |
411 | |
32984 | 412 case STREAMTYPE_VCD: |
413 { | |
414 char tmp[512]; | |
415 | |
33874 | 416 sprintf(tmp, "vcd://%d", guiInfo.Track); |
35452 | 417 uiSetFile(NULL, tmp, SAME_STREAMTYPE); |
32984 | 418 } |
419 break; | |
420 | |
421 case STREAMTYPE_DVD: | |
422 { | |
423 char tmp[512]; | |
424 | |
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
425 sprintf(tmp, "dvd://%d", guiInfo.Track); |
35452 | 426 uiSetFile(NULL, tmp, SAME_STREAMTYPE); |
32984 | 427 } |
35168 | 428 #ifdef CONFIG_DVDREAD |
33555 | 429 dvd_chapter = guiInfo.Chapter; |
430 dvd_angle = guiInfo.Angle; | |
35168 | 431 #endif |
32984 | 432 break; |
433 } | |
434 | |
34684 | 435 /* video opts */ |
32984 | 436 |
437 if (!video_driver_list) { | |
438 int i = 0; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
439 |
32984 | 440 while (video_out_drivers[i++]) { |
441 if (video_out_drivers[i - 1]->control(VOCTRL_GUISUPPORT, NULL) == VO_TRUE) { | |
34610 | 442 listSet(&video_driver_list, (char *)video_out_drivers[i - 1]->info->short_name); |
32984 | 443 break; |
444 } | |
445 } | |
446 } | |
447 | |
448 if (!video_driver_list && !video_driver_list[0]) { | |
33024 | 449 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_IDFGCVD); |
33768 | 450 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); |
32984 | 451 } |
452 | |
453 { | |
454 int i = 0; | |
455 | |
33901 | 456 guiInfo.VideoWindow = True; |
32984 | 457 |
458 while (video_out_drivers[i++]) { | |
459 if (video_out_drivers[i - 1]->control(VOCTRL_GUISUPPORT, NULL) == VO_TRUE) { | |
460 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 | 461 guiInfo.VideoWindow = False; |
32984 | 462 break; |
463 } | |
464 } | |
465 } | |
466 } | |
467 | |
468 if (video_driver_list && !gstrcmp(video_driver_list[0], "dxr3")) | |
33555 | 469 if (guiInfo.StreamType != STREAMTYPE_DVD && guiInfo.StreamType != STREAMTYPE_VCD) |
32984 | 470 if (gtkVfLAVC) |
471 add_vf("lavc"); | |
472 | |
473 if (gtkVfPP) | |
474 add_vf("pp"); | |
475 | |
34684 | 476 /* audio opts */ |
32984 | 477 |
478 // if ( ao_plugin_cfg.plugin_list ) { free( ao_plugin_cfg.plugin_list ); ao_plugin_cfg.plugin_list=NULL; } | |
479 if (gtkAONorm) | |
34610 | 480 listRepl(&af_cfg.list, "volnorm", "volnorm"); |
32984 | 481 |
482 if (gtkEnableAudioEqualizer) | |
34610 | 483 listRepl(&af_cfg.list, "equalizer", "equalizer"); |
32984 | 484 |
485 if (gtkAOExtraStereo) { | |
486 char *name; | |
487 | |
488 name = malloc(12 + 20 + 1); | |
489 snprintf(name, 12 + 20, "extrastereo=%f", gtkAOExtraStereoMul); | |
490 name[12 + 20] = 0; | |
34610 | 491 listRepl(&af_cfg.list, "extrastereo", name); |
32984 | 492 free(name); |
493 } | |
494 | |
495 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "oss", 3)) { | |
496 mixer_device = gtkAOOSSMixer; | |
497 mixer_channel = gtkAOOSSMixerChannel; | |
498 | |
499 if (gtkAOOSSDevice) { | |
34625 | 500 char *tmp; |
34624 | 501 |
32984 | 502 tmp = calloc(1, strlen(gtkAOOSSDevice) + 7); |
503 sprintf(tmp, "oss:%s", gtkAOOSSDevice); | |
34625 | 504 listSet(&audio_driver_list, tmp); |
505 free(tmp); | |
34624 | 506 } |
32984 | 507 } |
508 | |
509 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "alsa", 4)) { | |
510 mixer_device = gtkAOALSAMixer; | |
511 mixer_channel = gtkAOALSAMixerChannel; | |
512 | |
513 if (gtkAOALSADevice) { | |
34625 | 514 char *tmp; |
34624 | 515 |
32984 | 516 tmp = calloc(1, strlen(gtkAOALSADevice) + 14); |
517 sprintf(tmp, "alsa:device=%s", gtkAOALSADevice); | |
34625 | 518 listSet(&audio_driver_list, tmp); |
519 free(tmp); | |
34624 | 520 } |
32984 | 521 } |
522 | |
523 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "sdl", 3)) { | |
34624 | 524 if (gtkAOSDLDriver) { |
34625 | 525 char *tmp; |
32984 | 526 |
527 tmp = calloc(1, strlen(gtkAOSDLDriver) + 10); | |
528 sprintf(tmp, "sdl:%s", gtkAOSDLDriver); | |
34625 | 529 listSet(&audio_driver_list, tmp); |
530 free(tmp); | |
34624 | 531 } |
32984 | 532 } |
533 | |
534 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "esd", 3)) { | |
34624 | 535 if (gtkAOESDDevice) { |
34625 | 536 char *tmp; |
32984 | 537 |
538 tmp = calloc(1, strlen(gtkAOESDDevice) + 10); | |
539 sprintf(tmp, "esd:%s", gtkAOESDDevice); | |
34625 | 540 listSet(&audio_driver_list, tmp); |
541 free(tmp); | |
34624 | 542 } |
32984 | 543 } |
544 | |
34684 | 545 /* subtitle */ |
32984 | 546 |
33897 | 547 // subdata->filename=gstrdup( guiInfo.SubtitleFilename ); |
32984 | 548 stream_dump_type = 0; |
549 | |
550 if (gtkSubDumpMPSub) | |
551 stream_dump_type = 4; | |
552 | |
553 if (gtkSubDumpSrt) | |
554 stream_dump_type = 6; | |
555 | |
35493 | 556 gtkSubDumpMPSub = gtkSubDumpSrt = False; |
33763 | 557 mplayerLoadFont(); |
23077 | 558 |
34684 | 559 /* misc */ |
32984 | 560 |
561 if (gtkCacheOn) | |
562 stream_cache_size = gtkCacheSize; | |
563 | |
564 if (gtkAutoSyncOn) | |
565 autosync = gtkAutoSync; | |
23077 | 566 |
33897 | 567 if (guiInfo.AudioFilename) |
568 audio_stream = gstrdup(guiInfo.AudioFilename); | |
33894 | 569 else if (guiInfo.NewPlay == GUI_FILE_NEW) |
33739 | 570 nfree(audio_stream); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
571 |
32984 | 572 // audio_stream = NULL; |
573 | |
33555 | 574 guiInfo.NewPlay = 0; |
23077 | 575 |
32984 | 576 ass_enabled = gtkASS.enabled; |
577 ass_use_margins = gtkASS.use_margins; | |
578 ass_top_margin = gtkASS.top_margin; | |
23077 | 579 ass_bottom_margin = gtkASS.bottom_margin; |
580 | |
32984 | 581 break; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
582 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
583 case GUI_SET_STREAM: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
584 |
34859 | 585 if (guiInfo.StreamType == STREAMTYPE_PLAYLIST) |
586 guiInfo.mpcontext->file_format = DEMUXER_TYPE_PLAYLIST; | |
587 | |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
588 stream = data; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
589 guiInfo.StreamType = stream->type; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
590 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
591 switch (guiInfo.StreamType) { |
34424 | 592 case STREAMTYPE_FILE: |
593 case STREAMTYPE_STREAM: | |
35488
9ef9131adfe5
Provide a number of tracks information for files in playlists.
ib
parents:
35484
diff
changeset
|
594 guiInfo.Tracks = (int)listMgr(PLAYLIST_ITEM_GET_POS, 0); |
34424 | 595 break; |
596 | |
34387 | 597 case STREAMTYPE_CDDA: |
598 guiInfo.Tracks = 0; | |
599 stream_control(stream, STREAM_CTRL_GET_NUM_TITLES, &guiInfo.Tracks); | |
600 break; | |
601 | |
34077 | 602 case STREAMTYPE_VCD: |
603 guiInfo.Tracks = 0; | |
34388
9ee95c78e85f
Replace VCD's STREAM_CTRL_GET_NUM_CHAPTERS by STREAM_CTRL_GET_NUM_TITLES.
ib
parents:
34387
diff
changeset
|
604 stream_control(stream, STREAM_CTRL_GET_NUM_TITLES, &guiInfo.Tracks); |
34077 | 605 break; |
606 | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
607 case STREAMTYPE_DVD: |
34389
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
608 guiInfo.Tracks = 0; |
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
609 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
|
610 guiInfo.Chapters = 0; |
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
611 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
|
612 guiInfo.Angles = 0; |
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
613 stream_control(stream, STREAM_CTRL_GET_NUM_ANGLES, &guiInfo.Angles); |
35170 | 614 guiInfo.Track = 0; |
615 stream_control(stream, STREAM_CTRL_GET_CURRENT_TITLE, &guiInfo.Track); | |
616 guiInfo.Track++; | |
35168 | 617 // guiInfo.Chapter will be set by mplayer |
618 guiInfo.Angle = 1; | |
619 stream_control(stream, STREAM_CTRL_GET_ANGLE, &guiInfo.Angle); | |
34454 | 620 #ifdef CONFIG_DVDREAD |
33730 | 621 dvd = stream->priv; |
33902 | 622 guiInfo.AudioStreams = dvd->nr_of_channels; |
623 memcpy(guiInfo.AudioStream, dvd->audio_streams, sizeof(dvd->audio_streams)); | |
624 guiInfo.Subtitles = dvd->nr_of_subtitles; | |
625 memcpy(guiInfo.Subtitle, dvd->subtitles, sizeof(dvd->subtitles)); | |
34454 | 626 #endif |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
627 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
628 } |
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 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
631 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
632 case GUI_SET_AFILTER: |
35541 | 633 |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
634 guiInfo.afilter = data; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
635 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
636 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
637 case GUI_SET_VIDEO: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
638 |
34684 | 639 /* video */ |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
640 |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
641 guiInfo.sh_video = data; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
642 |
35462 | 643 nfree(guiInfo.CodecName); |
644 | |
645 if (guiInfo.sh_video) | |
646 guiInfo.CodecName = strdup(guiInfo.sh_video->codec->name); | |
647 | |
34074
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
648 state = (guiInfo.StreamType == STREAMTYPE_STREAM ? btnDisabled : btnReleased); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
649 btnSet(evForward10sec, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
650 btnSet(evBackward10sec, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
651 btnSet(evForward1min, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
652 btnSet(evBackward1min, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
653 btnSet(evForward10min, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
654 btnSet(evBackward10min, state); |
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
655 btnSet(evSetMoviePosition, state); |
33692
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 if (video_driver_list && !gstrcmp(video_driver_list[0], "dxr3") && (((demuxer_t *)mpctx_get_demuxer(guiInfo.mpcontext))->file_format != DEMUXER_TYPE_MPEG_PS) && !gtkVfLAVC) { |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
658 gtkMessageBox(GTK_MB_FATAL, MSGTR_NEEDLAVC); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
659 return False; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
660 } |
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 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
663 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
664 case GUI_SET_AUDIO: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
665 |
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
666 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
|
667 |
35454 | 668 if (data && !guiInfo.sh_video) { |
33901 | 669 guiInfo.VideoWindow = False; |
35454 | 670 guiInfo.VideoWidth = 0; |
671 guiInfo.VideoHeight = 0; | |
672 } | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
673 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
674 gui(GUI_SET_MIXER, 0); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
675 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
676 if (gtkEnableAudioEqualizer) { |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
677 equalizer_t eq; |
33693
006a2db8bd55
Use unsigned index variable for comparison with array size.
ib
parents:
33692
diff
changeset
|
678 unsigned int i, j; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
679 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
680 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
|
681 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
|
682 eq.channel = i; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
683 eq.band = j; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
684 eq.gain = gtkEquChannels[i][j]; |
33766 | 685 mplayer(MPLAYER_SET_EQUALIZER, 0, &eq); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
686 } |
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 |
33960 | 690 // These must be done here (in the last call from MPlayer before |
691 // playback starts) and not in GUI_SETUP_VIDEO_WINDOW, because... | |
692 | |
693 // ...without video there will be no call to GUI_SETUP_VIDEO_WINDOW | |
694 if (!guiInfo.VideoWindow) { | |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
695 wsWindowVisibility(&guiApp.videoWindow, wsHideWindow); |
33978 | 696 btnSet(evFullScreen, (gtkLoadFullscreen ? btnPressed : btnReleased)); |
33960 | 697 } |
698 | |
699 // ...option variable fullscreen determines whether MPlayer will handle | |
700 // the window given by WinID as fullscreen window (and will do aspect | |
701 // scaling then) or not - quite rubbish | |
702 fullscreen = gtkLoadFullscreen; | |
703 | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
704 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
705 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
706 case GUI_SET_MIXER: |
35535 | 707 |
708 if (guiInfo.mpcontext) | |
709 mixer = mpctx_get_mixer(guiInfo.mpcontext); | |
710 | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
711 if (mixer) { |
35537 | 712 float l, r, b; |
35542 | 713 static float last_balance = 50.0f; |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
714 |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
715 mixer_getvolume(mixer, &l, &r); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
716 guiInfo.Volume = FFMAX(l, r); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
717 btnModify(evSetVolume, guiInfo.Volume); |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
718 |
35537 | 719 mixer_getbalance(mixer, &b); |
35544 | 720 guiInfo.Balance = (b + 1.0) * 50.0; // transform -1..1 to 0..100 |
35542 | 721 |
722 if (guiInfo.Balance != last_balance) { | |
723 l = guiInfo.Volume * (100.0 - guiInfo.Balance) / 50.0; | |
724 r = guiInfo.Volume * guiInfo.Balance / 50.0; | |
725 mixer_setvolume(mixer, FFMIN(l, guiInfo.Volume), FFMIN(r, guiInfo.Volume)); | |
726 btnModify(evSetBalance, guiInfo.Balance); | |
727 last_balance = guiInfo.Balance; | |
728 } | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
729 } |
35541 | 730 |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
731 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
732 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
733 case GUI_REDRAW: |
35541 | 734 |
35773 | 735 uiEvent(ivRedraw, 0); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
736 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
737 |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
738 case GUI_SETUP_VIDEO_WINDOW: |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
739 |
33901 | 740 guiInfo.VideoWidth = vo_dwidth; |
741 guiInfo.VideoHeight = vo_dheight; | |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
742 |
34697 | 743 if (!guiApp.videoWindow.isFullScreen || !guiApp.videoWindow.Mapped) { |
744 if (!guiApp.videoWindow.isFullScreen) | |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
745 wsWindowResize(&guiApp.videoWindow, guiInfo.VideoWidth, guiInfo.VideoHeight); |
34697 | 746 if (!guiApp.videoWindow.Mapped) |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
747 wsWindowVisibility(&guiApp.videoWindow, wsShowWindow); |
33960 | 748 } |
749 | |
34697 | 750 if (gtkLoadFullscreen ^ guiApp.videoWindow.isFullScreen) |
35773 | 751 uiEvent(evFullScreen, True); |
33960 | 752 |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
753 if (guiWinID >= 0) |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
754 wsWindowMove(&guiApp.mainWindow, True, 0, guiInfo.VideoHeight); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
755 |
35755
589cf8a5f165
Realize a smooth and flicker-free video when resizing during playback.
ib
parents:
35748
diff
changeset
|
756 wsWindowBackground(&guiApp.videoWindow, -1, -1, -1); |
589cf8a5f165
Realize a smooth and flicker-free video when resizing during playback.
ib
parents:
35748
diff
changeset
|
757 |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
758 break; |
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
759 |
33733 | 760 case GUI_HANDLE_X_EVENT: |
35541 | 761 |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35678
diff
changeset
|
762 wsEvent(data); |
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
763 gtkEventHandling(); |
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)) | |
1168 gtkMessageBox(GTK_MB_FATAL, msg); | |
1169 } |