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