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