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