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