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