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