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