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