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