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