Mercurial > mplayer.hg
annotate gui/interface.c @ 31398:b240cee8506d
Error messages should not be hidden at -v level.
author | reimar |
---|---|
date | Fri, 18 Jun 2010 16:32:54 +0000 |
parents | 169013ed9718 |
children | 283eac48391d |
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 |
19 #include <inttypes.h> | |
20 #include <stdlib.h> | |
21 #include <stdio.h> | |
22 #include <string.h> | |
23 #include <sys/types.h> | |
24 | |
25 #include "wm/ws.h" | |
26 #include "wm/wsxdnd.h" | |
27 #include "interface.h" | |
28 #include "skin/skin.h" | |
29 | |
30 #include "mplayer/gtk/eq.h" | |
31 #include "mplayer/widgets.h" | |
32 #include "mplayer/gmplayer.h" | |
33 #include "mplayer/play.h" | |
34 | |
35 #include "access_mpcontext.h" | |
36 #include "app.h" | |
37 #include "cfg.h" | |
38 #include "help_mp.h" | |
30901 | 39 #include "path.h" |
30516 | 40 #include "mp_core.h" |
30536
39a4dd7ec420
Move GUI-related extern declarations to a GUI header file.
diego
parents:
30535
diff
changeset
|
41 #include "mplayer.h" |
30653
3d23e24c5c60
Declare externally used variables from vd.c as extern in vd.h.
diego
parents:
30536
diff
changeset
|
42 #include "libmpcodecs/vd.h" |
23077 | 43 #include "libvo/x11_common.h" |
44 #include "libvo/video_out.h" | |
45 #include "libvo/font_load.h" | |
46 #include "libvo/sub.h" | |
47 #include "input/input.h" | |
48 #include "libao2/audio_out.h" | |
49 #include "mixer.h" | |
50 #include "libaf/af.h" | |
51 #include "libaf/equalizer.h" | |
24153
0bbfebce0583
Remove redundant extern declarations, #include the right headers instead.
diego
parents:
24149
diff
changeset
|
52 #include "libass/ass_mp.h" |
23077 | 53 |
54 extern af_cfg_t af_cfg; | |
55 | |
27393 | 56 #ifdef CONFIG_ICONV |
23077 | 57 #include <iconv.h> |
58 #endif | |
59 | |
60 #include "stream/stream.h" | |
61 #include "libmpdemux/demuxer.h" | |
62 #include "libmpdemux/stheader.h" | |
63 #include "libmpcodecs/dec_video.h" | |
64 | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
65 #ifdef CONFIG_DVDREAD |
23077 | 66 #include "stream/stream_dvd.h" |
67 #endif | |
68 | |
23603
c1221a031ab7
Add a (almost correct) prototype for vcd_seek_to_track
reimar
parents:
23341
diff
changeset
|
69 int vcd_seek_to_track(void *vcd, int track); |
23077 | 70 |
71 #include "m_config.h" | |
72 #include "m_option.h" | |
73 | |
74 | |
75 guiInterface_t guiIntfStruct; | |
76 int guiWinID=-1; | |
77 | |
78 int gstrcmp( const char * a,const char * b ) | |
79 { | |
80 if ( !a && !b ) return 0; | |
81 if ( !a || !b ) return -1; | |
82 return strcmp( a,b ); | |
83 } | |
84 | |
30535
016e5fc1dead
GUI: Mark functions that are not used outside their files as static.
diego
parents:
30516
diff
changeset
|
85 static int gstrncmp( const char * a, const char * b, int size ) |
23077 | 86 { |
87 if ( !a && !b ) return 0; | |
88 if ( !a || !b ) return -1; | |
89 return strncmp( a,b,size ); | |
90 } | |
91 | |
92 char * gstrdup( const char * str ) | |
93 { | |
94 if ( !str ) return NULL; | |
95 return strdup( str ); | |
96 } | |
97 | |
98 char * gstrchr( char * str,int c ) | |
99 { | |
100 if ( !str ) return NULL; | |
101 return strchr( str,c ); | |
102 } | |
103 | |
104 void gfree( void ** p ) | |
105 { | |
106 if ( *p == NULL ) return; | |
107 free( *p ); *p=NULL; | |
108 } | |
109 | |
110 /** | |
111 * \brief this actually creates a new list containing only one element... | |
112 */ | |
113 void gaddlist( char *** list,const char * entry ) | |
114 { | |
115 int i; | |
116 | |
117 if ( (*list) ) | |
118 { | |
119 for ( i=0;(*list)[i];i++ ) free( (*list)[i] ); | |
120 free( (*list) ); | |
121 } | |
122 | |
123 (*list)=malloc( 2 * sizeof(char **) ); | |
124 (*list)[0]=gstrdup( entry ); | |
125 (*list)[1]=NULL; | |
126 } | |
127 | |
128 /** | |
129 * \brief this replaces a string starting with search by replace. | |
130 * If not found, replace is appended. | |
131 */ | |
30535
016e5fc1dead
GUI: Mark functions that are not used outside their files as static.
diego
parents:
30516
diff
changeset
|
132 static void greplace(char ***list, const char *search, const char *replace) |
23077 | 133 { |
134 int i = 0; | |
135 int len = (search) ? strlen(search) : 0; | |
136 | |
137 if (*list) { | |
138 for (i = 0; (*list)[i]; i++) { | |
139 if (search && (strncmp((*list)[i], search, len) == 0)) { | |
140 free((*list)[i]); | |
141 (*list)[i] = gstrdup(replace); | |
142 return; | |
143 } | |
144 } | |
145 *list = realloc(*list, (i + 2) * sizeof(char *)); | |
146 } | |
147 else | |
148 *list = malloc(2 * sizeof(char *)); | |
149 | |
150 (*list)[i] = gstrdup(replace); | |
151 (*list)[i + 1] = NULL; | |
152 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
153 |
23077 | 154 void guiInit( void ) |
155 { | |
156 int i; | |
157 | |
158 memset( &guiIntfStruct,0,sizeof( guiIntfStruct ) ); | |
159 guiIntfStruct.Balance=50.0f; | |
160 guiIntfStruct.StreamType=-1; | |
161 | |
162 memset( >kEquChannels,0,sizeof( gtkEquChannels ) ); | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
163 #ifdef CONFIG_DXR3 |
23077 | 164 if ( !gtkDXR3Device ) gtkDXR3Device=strdup( "/dev/em8300-0" ); |
165 #endif | |
166 if ( stream_cache_size > 0 ) { gtkCacheOn=1; gtkCacheSize=stream_cache_size; } | |
167 else if ( stream_cache_size == 0 ) gtkCacheOn = 0; | |
168 if ( autosync && autosync != gtkAutoSync ) { gtkAutoSyncOn=1; gtkAutoSync=autosync; } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
169 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
170 #ifdef CONFIG_ASS |
23077 | 171 gtkASS.enabled = ass_enabled; |
172 gtkASS.use_margins = ass_use_margins; | |
173 gtkASS.top_margin = ass_top_margin; | |
174 gtkASS.bottom_margin = ass_bottom_margin; | |
175 #endif | |
176 | |
177 gtkInit(); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
178 // --- initialize X |
23077 | 179 wsXInit( (void *)mDisplay ); |
180 // --- load skin | |
181 skinDirInHome=get_path("skins"); | |
182 skinDirInHome_obsolete=get_path("Skin"); | |
183 skinMPlayerDir=MPLAYER_DATADIR "/skins"; | |
184 skinMPlayerDir_obsolete=MPLAYER_DATADIR "/Skin"; | |
185 mp_msg( MSGT_GPLAYER,MSGL_V,"SKIN dir 1: '%s'\n",skinDirInHome); | |
186 mp_msg( MSGT_GPLAYER,MSGL_V,"SKIN dir 1 (obsolete): '%s'\n",skinDirInHome_obsolete); | |
187 mp_msg( MSGT_GPLAYER,MSGL_V,"SKIN dir 2: '%s'\n",skinMPlayerDir); | |
188 mp_msg( MSGT_GPLAYER,MSGL_V,"SKIN dir 2 (obsolete): '%s'\n",skinMPlayerDir_obsolete); | |
189 if ( !skinName ) skinName=strdup( "default" ); | |
190 i = skinRead( skinName ); | |
191 if ((i == -1) && strcmp(skinName,"default")) | |
192 { | |
193 mp_msg( MSGT_GPLAYER,MSGL_WARN,MSGTR_SKIN_SKINCFG_SelectedSkinNotFound, skinName); | |
194 skinName=strdup( "default" ); | |
195 i = skinRead( skinName ); | |
196 } | |
197 switch (i) { | |
198 case -1: mp_msg( MSGT_GPLAYER,MSGL_ERR,MSGTR_SKIN_SKINCFG_SkinNotFound,skinName ); exit( 0 ); | |
199 case -2: mp_msg( MSGT_GPLAYER,MSGL_ERR,MSGTR_SKIN_SKINCFG_SkinCfgReadError,skinName ); exit( 0 ); | |
200 } | |
201 // --- initialize windows | |
202 if ( ( mplDrawBuffer = malloc( appMPlayer.main.Bitmap.ImageSize ) ) == NULL ) | |
203 { | |
204 fprintf( stderr,MSGTR_NEMDB ); | |
205 exit( 0 ); | |
206 } | |
207 | |
208 if ( gui_save_pos ) | |
209 { | |
210 appMPlayer.main.x = gui_main_pos_x; | |
211 appMPlayer.main.y = gui_main_pos_y; | |
212 appMPlayer.sub.x = gui_sub_pos_x; | |
213 appMPlayer.sub.y = gui_sub_pos_y; | |
214 } | |
215 | |
216 if (WinID>0) | |
217 { | |
218 appMPlayer.subWindow.Parent=WinID; | |
219 appMPlayer.sub.x=0; | |
220 appMPlayer.sub.y=0; | |
221 } | |
222 if (guiWinID>=0) appMPlayer.mainWindow.Parent=guiWinID; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
223 |
23077 | 224 wsCreateWindow( &appMPlayer.subWindow, |
225 appMPlayer.sub.x,appMPlayer.sub.y,appMPlayer.sub.width,appMPlayer.sub.height, | |
226 wsNoBorder,wsShowMouseCursor|wsHandleMouseButton|wsHandleMouseMove,wsShowFrame|wsHideWindow,"MPlayer - Video" ); | |
227 | |
228 wsDestroyImage( &appMPlayer.subWindow ); | |
229 wsCreateImage( &appMPlayer.subWindow,appMPlayer.sub.Bitmap.Width,appMPlayer.sub.Bitmap.Height ); | |
230 wsXDNDMakeAwareness(&appMPlayer.subWindow); | |
231 | |
232 mplMenuInit(); | |
233 mplPBInit(); | |
234 | |
235 // i=wsHideFrame|wsMaxSize|wsHideWindow; | |
236 // if ( appMPlayer.mainDecoration ) i=wsShowFrame|wsMaxSize|wsHideWindow; | |
237 i=wsShowFrame|wsMaxSize|wsHideWindow; | |
238 wsCreateWindow( &appMPlayer.mainWindow, | |
239 appMPlayer.main.x,appMPlayer.main.y,appMPlayer.main.width,appMPlayer.main.height, | |
240 wsNoBorder,wsShowMouseCursor|wsHandleMouseButton|wsHandleMouseMove,i,"MPlayer" ); | |
241 | |
242 wsSetShape( &appMPlayer.mainWindow,appMPlayer.main.Mask.Image ); | |
243 wsXDNDMakeAwareness(&appMPlayer.mainWindow); | |
244 | |
245 #ifdef DEBUG | |
246 mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[main] depth on screen: %d\n",wsDepthOnScreen ); | |
247 mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[main] parent: 0x%x\n",(int)appMPlayer.mainWindow.WindowID ); | |
248 mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[main] sub: 0x%x\n",(int)appMPlayer.subWindow.WindowID ); | |
249 #endif | |
250 | |
251 appMPlayer.mainWindow.ReDraw=(void *)mplMainDraw; | |
252 appMPlayer.mainWindow.MouseHandler=mplMainMouseHandle; | |
253 appMPlayer.mainWindow.KeyHandler=mplMainKeyHandle; | |
254 appMPlayer.mainWindow.DandDHandler=mplDandDHandler; | |
255 | |
256 appMPlayer.subWindow.ReDraw=(void *)mplSubDraw; | |
257 appMPlayer.subWindow.MouseHandler=mplSubMouseHandle; | |
258 appMPlayer.subWindow.KeyHandler=mplMainKeyHandle; | |
259 appMPlayer.subWindow.DandDHandler=mplDandDHandler; | |
260 | |
261 wsSetBackgroundRGB( &appMPlayer.subWindow,appMPlayer.sub.R,appMPlayer.sub.G,appMPlayer.sub.B ); | |
262 wsClearWindow( appMPlayer.subWindow ); | |
263 if ( appMPlayer.sub.Bitmap.Image ) wsConvert( &appMPlayer.subWindow,appMPlayer.sub.Bitmap.Image,appMPlayer.sub.Bitmap.ImageSize ); | |
264 | |
265 btnModify( evSetVolume,guiIntfStruct.Volume ); | |
266 btnModify( evSetBalance,guiIntfStruct.Balance ); | |
267 btnModify( evSetMoviePosition,guiIntfStruct.Position ); | |
268 | |
269 wsSetIcon( wsDisplay,appMPlayer.mainWindow.WindowID,guiIcon,guiIconMask ); | |
270 wsSetIcon( wsDisplay,appMPlayer.subWindow.WindowID,guiIcon,guiIconMask ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
271 |
23077 | 272 guiIntfStruct.Playing=0; |
273 | |
274 if ( !appMPlayer.mainDecoration ) wsWindowDecoration( &appMPlayer.mainWindow,0 ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
275 |
23077 | 276 wsVisibleWindow( &appMPlayer.mainWindow,wsShowWindow ); |
277 #if 0 | |
278 wsVisibleWindow( &appMPlayer.subWindow,wsShowWindow ); | |
279 | |
280 { | |
281 XEvent xev; | |
282 do { XNextEvent( wsDisplay,&xev ); } while ( xev.type != MapNotify || xev.xmap.event != appMPlayer.subWindow.WindowID ); | |
283 appMPlayer.subWindow.Mapped=wsMapped; | |
284 } | |
285 | |
286 if ( !fullscreen ) fullscreen=gtkLoadFullscreen; | |
287 if ( fullscreen ) | |
288 { | |
289 mplFullScreen(); | |
290 btnModify( evFullScreen,btnPressed ); | |
291 } | |
292 #else | |
293 if ( !fullscreen ) fullscreen=gtkLoadFullscreen; | |
294 if ( gtkShowVideoWindow ) | |
295 { | |
296 wsVisibleWindow( &appMPlayer.subWindow,wsShowWindow ); | |
297 { | |
298 XEvent xev; | |
299 do { XNextEvent( wsDisplay,&xev ); } while ( xev.type != MapNotify || xev.xmap.event != appMPlayer.subWindow.WindowID ); | |
300 appMPlayer.subWindow.Mapped=wsMapped; | |
301 } | |
302 | |
303 if ( fullscreen ) | |
304 { | |
305 mplFullScreen(); | |
306 btnModify( evFullScreen,btnPressed ); | |
307 } | |
308 } | |
309 else | |
310 { | |
311 if ( fullscreen ) | |
312 { | |
313 wsVisibleWindow( &appMPlayer.subWindow,wsShowWindow ); | |
314 { | |
315 XEvent xev; | |
316 do { XNextEvent( wsDisplay,&xev ); } while ( xev.type != MapNotify || xev.xmap.event != appMPlayer.subWindow.WindowID ); | |
317 appMPlayer.subWindow.Mapped=wsMapped; | |
318 } | |
319 wsVisibleWindow( &appMPlayer.subWindow, wsShowWindow ); | |
320 | |
321 mplFullScreen(); | |
322 btnModify( evFullScreen,btnPressed ); | |
323 } | |
324 } | |
325 #endif | |
326 mplSubRender=1; | |
327 // --- | |
328 | |
329 if ( filename ) mplSetFileName( NULL,filename,STREAMTYPE_FILE ); | |
330 if ( plCurrent && !filename ) mplSetFileName( plCurrent->path,plCurrent->name,STREAMTYPE_FILE ); | |
331 if ( subdata ) guiSetFilename( guiIntfStruct.Subtitlename, subdata->filename ); | |
332 guiLoadFont(); | |
333 } | |
334 | |
335 void guiDone( void ) | |
336 { | |
337 mplMainRender=0; | |
338 mp_msg( MSGT_GPLAYER,MSGL_V,"[GUI] done.\n" ); | |
339 | |
340 if ( gui_save_pos ) | |
341 { | |
342 gui_main_pos_x=appMPlayer.mainWindow.X; gui_main_pos_y=appMPlayer.mainWindow.Y; | |
343 gui_sub_pos_x=appMPlayer.subWindow.X; gui_sub_pos_y=appMPlayer.subWindow.Y; | |
344 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
345 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
346 #ifdef CONFIG_ASS |
23077 | 347 ass_enabled = gtkASS.enabled; |
348 ass_use_margins = gtkASS.use_margins; | |
349 ass_top_margin = gtkASS.top_margin; | |
350 ass_bottom_margin = gtkASS.bottom_margin; | |
351 #endif | |
352 | |
353 cfg_write(); | |
354 wsXDone(); | |
355 } | |
356 | |
357 extern int stream_dump_type; | |
358 extern int vcd_track; | |
359 extern m_obj_settings_t * vf_settings; | |
360 | |
361 void guiLoadFont( void ) | |
362 { | |
27393 | 363 #ifdef CONFIG_FREETYPE |
25851
9ebd00825df2
Allow independent scaling of vo_font and sub_font.
reimar
parents:
25765
diff
changeset
|
364 load_font_ft(vo_image_width, vo_image_height, &vo_font, font_name, osd_font_scale_factor); |
23077 | 365 #else |
366 if ( vo_font ) | |
367 { | |
368 int i; | |
369 if ( vo_font->name ) free( vo_font->name ); | |
370 if ( vo_font->fpath ) free( vo_font->fpath ); | |
371 for ( i=0;i<16;i++ ) | |
372 if ( vo_font->pic_a[i] ) | |
373 { | |
374 if ( vo_font->pic_a[i]->bmp ) free( vo_font->pic_a[i]->bmp ); | |
375 if ( vo_font->pic_a[i]->pal ) free( vo_font->pic_a[i]->pal ); | |
376 } | |
377 for ( i=0;i<16;i++ ) | |
378 if ( vo_font->pic_b[i] ) | |
379 { | |
380 if ( vo_font->pic_b[i]->bmp ) free( vo_font->pic_b[i]->bmp ); | |
381 if ( vo_font->pic_b[i]->pal ) free( vo_font->pic_b[i]->pal ); | |
382 } | |
383 free( vo_font ); vo_font=NULL; | |
384 } | |
385 if ( font_name ) | |
386 { | |
387 vo_font=read_font_desc( font_name,font_factor,0 ); | |
388 if ( !vo_font ) mp_msg( MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadFont,font_name ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
389 } |
23077 | 390 else |
391 { | |
392 font_name=gstrdup( get_path( "font/font.desc" ) ); | |
393 vo_font=read_font_desc( font_name,font_factor,0 ); | |
394 if ( !vo_font ) | |
395 { | |
396 gfree( (void **)&font_name ); font_name=gstrdup(MPLAYER_DATADIR "/font/font.desc" ); | |
397 vo_font=read_font_desc( font_name,font_factor,0 ); | |
398 } | |
399 } | |
400 #endif | |
401 } | |
402 | |
403 extern char **sub_name; | |
404 | |
405 void guiLoadSubtitle( char * name ) | |
406 { | |
407 if ( guiIntfStruct.Playing == 0 ) | |
408 { | |
409 guiIntfStruct.SubtitleChanged=1; //what is this for? (mw) | |
410 return; | |
411 } | |
412 if ( subdata ) | |
413 { | |
414 mp_msg( MSGT_GPLAYER,MSGL_INFO,MSGTR_DeletingSubtitles ); | |
415 sub_free( subdata ); | |
416 subdata=NULL; | |
417 vo_sub=NULL; | |
418 if ( vo_osd_list ) | |
419 { | |
420 int len; | |
421 mp_osd_obj_t * osd = vo_osd_list; | |
422 while ( osd ) | |
423 { | |
424 if ( osd->type == OSDTYPE_SUBTITLE ) break; | |
425 osd=osd->next; | |
426 } | |
427 if ( osd && osd->flags&OSDFLAG_VISIBLE ) | |
428 { | |
429 len=osd->stride * ( osd->bbox.y2 - osd->bbox.y1 ); | |
430 memset( osd->bitmap_buffer,0,len ); | |
431 memset( osd->alpha_buffer,0,len ); | |
432 } | |
433 } | |
434 } | |
435 if ( name ) | |
436 { | |
437 mp_msg( MSGT_GPLAYER,MSGL_INFO,MSGTR_LoadingSubtitles,name ); | |
438 subdata=sub_read_file( name, guiIntfStruct.FPS ); | |
439 if ( !subdata ) mp_msg( MSGT_GPLAYER,MSGL_ERR,MSGTR_CantLoadSub,name ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
440 sub_name = (malloc(2 * sizeof(char*))); //when mplayer will be restarted |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
441 sub_name[0] = strdup(name); //sub_name[0] will be read |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
442 sub_name[1] = NULL; |
23077 | 443 } |
444 update_set_of_subtitles(); | |
445 | |
446 } | |
447 | |
448 static void add_vf( char * str ) | |
449 { | |
450 mp_msg( MSGT_GPLAYER,MSGL_STATUS,MSGTR_AddingVideoFilter,str ); | |
451 if ( vf_settings ) | |
452 { | |
453 int i = 0; | |
454 while ( vf_settings[i].name ) if ( !gstrcmp( vf_settings[i++].name,str ) ) { i=-1; break; } | |
455 if ( i != -1 ) | |
456 { vf_settings=realloc( vf_settings,( i + 2 ) * sizeof( m_obj_settings_t ) ); vf_settings[i].name=strdup( str );vf_settings[i].attribs = NULL; vf_settings[i+1].name=NULL; } | |
457 } else { vf_settings=malloc( 2 * sizeof( m_obj_settings_t ) ); vf_settings[0].name=strdup( str );vf_settings[0].attribs = NULL; vf_settings[1].name=NULL; } | |
458 } | |
459 | |
460 static void remove_vf( char * str ) | |
461 { | |
462 int n = 0; | |
463 | |
464 if ( !vf_settings ) return; | |
465 | |
466 mp_msg( MSGT_GPLAYER,MSGL_STATUS,MSGTR_RemovingVideoFilter,str ); | |
467 | |
468 while ( vf_settings[n++].name ); n--; | |
469 if ( n > -1 ) | |
470 { | |
471 int i = 0,m = -1; | |
472 while ( vf_settings[i].name ) if ( !gstrcmp( vf_settings[i++].name,str ) ) { m=i - 1; break; } | |
473 i--; | |
474 if ( m > -1 ) | |
475 { | |
476 if ( n == 1 ) { free( vf_settings[0].name );free( vf_settings[0].attribs ); free( vf_settings ); vf_settings=NULL; } | |
477 else { free( vf_settings[i].name );free( vf_settings[i].attribs ); memcpy( &vf_settings[i],&vf_settings[i + 1],( n - i ) * sizeof( m_obj_settings_t ) ); } | |
478 } | |
479 } | |
480 } | |
481 | |
30689
ebe42a93c6c3
Fix silly type of guiGetEvent argument to use void * instead of char * and
reimar
parents:
30653
diff
changeset
|
482 int guiGetEvent( int type,void * arg ) |
23077 | 483 { |
25765
304fc0bbefe1
audio_out / video_out structs should be treated as const
reimar
parents:
25219
diff
changeset
|
484 const ao_functions_t *audio_out = NULL; |
25219
e82ecde2cbd4
Mark several uses of vo_functions_t as const to stop some of the current
reimar
parents:
24242
diff
changeset
|
485 const vo_functions_t *video_out = NULL; |
23077 | 486 mixer_t *mixer = NULL; |
487 | |
30689
ebe42a93c6c3
Fix silly type of guiGetEvent argument to use void * instead of char * and
reimar
parents:
30653
diff
changeset
|
488 stream_t * stream = arg; |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
489 #ifdef CONFIG_DVDREAD |
30689
ebe42a93c6c3
Fix silly type of guiGetEvent argument to use void * instead of char * and
reimar
parents:
30653
diff
changeset
|
490 dvd_priv_t * dvdp = arg; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
491 #endif |
23077 | 492 |
493 if (guiIntfStruct.mpcontext) { | |
494 audio_out = mpctx_get_audio_out(guiIntfStruct.mpcontext); | |
495 video_out = mpctx_get_video_out(guiIntfStruct.mpcontext); | |
496 mixer = mpctx_get_mixer(guiIntfStruct.mpcontext); | |
497 } | |
498 | |
499 switch ( type ) | |
500 { | |
501 case guiXEvent: | |
30689
ebe42a93c6c3
Fix silly type of guiGetEvent argument to use void * instead of char * and
reimar
parents:
30653
diff
changeset
|
502 guiIntfStruct.event_struct=arg; |
ebe42a93c6c3
Fix silly type of guiGetEvent argument to use void * instead of char * and
reimar
parents:
30653
diff
changeset
|
503 wsEvents( wsDisplay,arg,NULL ); |
23077 | 504 gtkEventHandling(); |
505 break; | |
506 case guiCEvent: | |
507 switch ( (int)arg ) | |
508 { | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
509 case guiSetPlay: |
23077 | 510 guiIntfStruct.Playing=1; |
511 // if ( !gtkShowVideoWindow ) wsVisibleWindow( &appMPlayer.subWindow,wsHideWindow ); | |
512 break; | |
513 case guiSetStop: | |
514 guiIntfStruct.Playing=0; | |
515 // if ( !gtkShowVideoWindow ) wsVisibleWindow( &appMPlayer.subWindow,wsHideWindow ); | |
516 break; | |
517 case guiSetPause: guiIntfStruct.Playing=2; break; | |
518 } | |
519 mplState(); | |
520 break; | |
521 case guiSetState: | |
522 mplState(); | |
523 break; | |
524 case guiSetFileName: | |
525 if ( arg ) guiSetFilename( guiIntfStruct.Filename,arg ); | |
526 break; | |
527 case guiSetAudioOnly: | |
528 guiIntfStruct.AudioOnly=(int)arg; | |
529 if ( (int)arg ) { guiIntfStruct.NoWindow=True; wsVisibleWindow( &appMPlayer.subWindow,wsHideWindow ); } | |
530 else wsVisibleWindow( &appMPlayer.subWindow,wsShowWindow ); | |
531 break; | |
532 case guiSetContext: | |
30689
ebe42a93c6c3
Fix silly type of guiGetEvent argument to use void * instead of char * and
reimar
parents:
30653
diff
changeset
|
533 guiIntfStruct.mpcontext=arg; |
23077 | 534 case guiSetDemuxer: |
30689
ebe42a93c6c3
Fix silly type of guiGetEvent argument to use void * instead of char * and
reimar
parents:
30653
diff
changeset
|
535 guiIntfStruct.demuxer=arg; |
23077 | 536 break; |
537 case guiSetAfilter: | |
30689
ebe42a93c6c3
Fix silly type of guiGetEvent argument to use void * instead of char * and
reimar
parents:
30653
diff
changeset
|
538 guiIntfStruct.afilter=arg; |
23077 | 539 break; |
540 case guiSetShVideo: | |
541 { | |
542 if ( !appMPlayer.subWindow.isFullScreen ) | |
543 { | |
544 wsResizeWindow( &appMPlayer.subWindow,vo_dwidth,vo_dheight ); | |
545 wsMoveWindow( &appMPlayer.subWindow,True,appMPlayer.sub.x,appMPlayer.sub.y ); | |
546 } | |
547 guiIntfStruct.MovieWidth=vo_dwidth; | |
548 guiIntfStruct.MovieHeight=vo_dheight; | |
549 if (guiWinID>=0) | |
550 wsMoveWindow( &appMPlayer.mainWindow,0,0, vo_dheight); | |
31315
ad274a5b093b
For vos that support the new libvo API (provide UPDATE_SCREENINFO),
reimar
parents:
31312
diff
changeset
|
551 WinID = appMPlayer.subWindow.WindowID; |
23077 | 552 } |
553 break; | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
554 #ifdef CONFIG_DVDREAD |
23077 | 555 case guiSetDVD: |
556 guiIntfStruct.DVD.titles=dvdp->vmg_file->tt_srpt->nr_of_srpts; | |
557 guiIntfStruct.DVD.chapters=dvdp->vmg_file->tt_srpt->title[dvd_title].nr_of_ptts; | |
558 guiIntfStruct.DVD.angles=dvdp->vmg_file->tt_srpt->title[dvd_title].nr_of_angles; | |
559 guiIntfStruct.DVD.nr_of_audio_channels=dvdp->nr_of_channels; | |
560 memcpy( guiIntfStruct.DVD.audio_streams,dvdp->audio_streams,sizeof( dvdp->audio_streams ) ); | |
561 guiIntfStruct.DVD.nr_of_subtitles=dvdp->nr_of_subtitles; | |
562 memcpy( guiIntfStruct.DVD.subtitles,dvdp->subtitles,sizeof( dvdp->subtitles ) ); | |
563 guiIntfStruct.DVD.current_title=dvd_title + 1; | |
564 guiIntfStruct.DVD.current_chapter=dvd_chapter + 1; | |
565 guiIntfStruct.DVD.current_angle=dvd_angle + 1; | |
566 guiIntfStruct.Track=dvd_title + 1; | |
567 break; | |
568 #endif | |
569 case guiSetStream: | |
570 guiIntfStruct.StreamType=stream->type; | |
571 switch( stream->type ) | |
572 { | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
573 #ifdef CONFIG_DVDREAD |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
574 case STREAMTYPE_DVD: |
23077 | 575 guiGetEvent( guiSetDVD,(char *)stream->priv ); |
576 break; | |
577 #endif | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
578 #ifdef CONFIG_VCD |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
579 case STREAMTYPE_VCD: |
23077 | 580 { |
581 int i; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
582 |
23077 | 583 if (!stream->priv) |
584 { | |
585 guiIntfStruct.VCDTracks=0; | |
586 break; | |
587 } | |
588 for ( i=1;i < 100;i++ ) | |
589 if ( vcd_seek_to_track( stream->priv,i ) < 0 ) break; | |
590 vcd_seek_to_track( stream->priv,vcd_track ); | |
591 guiIntfStruct.VCDTracks=--i; | |
592 break; | |
593 } | |
594 #endif | |
595 default: break; | |
596 } | |
597 break; | |
598 case guiIEvent: | |
599 mp_msg( MSGT_GPLAYER,MSGL_V,"cmd: %d\n",(int)arg ); | |
600 switch( (int)arg ) | |
601 { | |
602 case MP_CMD_QUIT: | |
603 mplEventHandling( evExit,0 ); | |
604 break; | |
605 case MP_CMD_VO_FULLSCREEN: | |
606 mplEventHandling( evFullScreen,0 ); | |
607 break; | |
608 } | |
609 break; | |
610 case guiReDraw: | |
611 mplEventHandling( evRedraw,0 ); | |
612 break; | |
613 case guiSetVolume: | |
614 if ( audio_out ) | |
615 { | |
616 float l,r; | |
617 mixer_getvolume( mixer,&l,&r ); | |
618 guiIntfStruct.Volume=(r>l?r:l); | |
619 if ( r != l ) guiIntfStruct.Balance=( ( r - l ) + 100 ) * 0.5f; | |
620 else guiIntfStruct.Balance=50.0f; | |
621 btnModify( evSetVolume,guiIntfStruct.Volume ); | |
622 btnModify( evSetBalance,guiIntfStruct.Balance ); | |
623 } | |
624 break; | |
625 case guiSetFileFormat: | |
626 guiIntfStruct.FileFormat=(int)arg; | |
627 break; | |
628 case guiSetValues: | |
629 // -- video | |
630 guiIntfStruct.sh_video=arg; | |
631 if ( arg ) | |
632 { | |
30689
ebe42a93c6c3
Fix silly type of guiGetEvent argument to use void * instead of char * and
reimar
parents:
30653
diff
changeset
|
633 sh_video_t * sh = arg; |
23077 | 634 guiIntfStruct.FPS=sh->fps; |
635 } | |
636 | |
637 if ( guiIntfStruct.NoWindow ) wsVisibleWindow( &appMPlayer.subWindow,wsHideWindow ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
638 |
23077 | 639 if ( guiIntfStruct.StreamType == STREAMTYPE_STREAM ) btnSet( evSetMoviePosition,btnDisabled ); |
640 else btnSet( evSetMoviePosition,btnReleased ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
641 |
23077 | 642 // -- audio |
643 if ( audio_out ) | |
644 { | |
645 float l,r; | |
646 mixer_getvolume( mixer,&l,&r ); | |
647 guiIntfStruct.Volume=(r>l?r:l); | |
648 if ( r != l ) guiIntfStruct.Balance=( ( r - l ) + 100 ) * 0.5f; | |
649 else guiIntfStruct.Balance=50.0f; | |
650 btnModify( evSetVolume,guiIntfStruct.Volume ); | |
651 btnModify( evSetBalance,guiIntfStruct.Balance ); | |
652 } | |
653 | |
654 if ( gtkEnableAudioEqualizer ) | |
655 { | |
656 equalizer_t eq; | |
657 int i,j; | |
658 for ( i=0;i<6;i++ ) | |
659 for ( j=0;j<10;j++ ) | |
660 { | |
661 eq.channel=i; eq.band=j; eq.gain=gtkEquChannels[i][j]; | |
662 gtkSet( gtkSetEqualizer,0,&eq ); | |
663 } | |
664 } | |
665 // -- subtitle | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
666 #ifdef CONFIG_DXR3 |
23077 | 667 if ( video_driver_list && !gstrcmp( video_driver_list[0],"dxr3" ) && guiIntfStruct.FileFormat != DEMUXER_TYPE_MPEG_PS |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
668 #ifdef CONFIG_LIBAVCODEC |
23077 | 669 && !gtkVfLAVC |
670 #endif | |
671 ) | |
672 { | |
673 gtkMessageBox( GTK_MB_FATAL,MSGTR_NEEDLAVC ); | |
674 guiIntfStruct.Playing=0; | |
675 return True; | |
676 } | |
677 #endif | |
678 break; | |
679 case guiSetDefaults: | |
680 // if ( guiIntfStruct.Playing == 1 && guiIntfStruct.FilenameChanged ) | |
681 if ( guiIntfStruct.FilenameChanged ) | |
682 { | |
683 audio_id=-1; | |
684 video_id=-1; | |
685 dvdsub_id=-1; | |
686 vobsub_id=-1; | |
687 stream_cache_size=-1; | |
688 autosync=0; | |
689 vcd_track=0; | |
690 dvd_title=0; | |
691 force_fps=0; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
692 } |
23077 | 693 guiIntfStruct.demuxer=NULL; |
694 guiIntfStruct.sh_video=NULL; | |
695 wsPostRedisplay( &appMPlayer.subWindow ); | |
696 break; | |
697 case guiSetParameters: | |
698 guiGetEvent( guiSetDefaults,NULL ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
699 switch ( guiIntfStruct.StreamType ) |
23077 | 700 { |
701 case STREAMTYPE_PLAYLIST: | |
702 break; | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
703 #ifdef CONFIG_VCD |
23077 | 704 case STREAMTYPE_VCD: |
705 { | |
706 char tmp[512]; | |
707 sprintf( tmp,"vcd://%d",guiIntfStruct.Track + 1 ); | |
708 guiSetFilename( guiIntfStruct.Filename,tmp ); | |
709 } | |
710 break; | |
711 #endif | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
712 #ifdef CONFIG_DVDREAD |
23077 | 713 case STREAMTYPE_DVD: |
714 { | |
715 char tmp[512]; | |
716 sprintf( tmp,"dvd://%d",guiIntfStruct.Title ); | |
717 guiSetFilename( guiIntfStruct.Filename,tmp ); | |
718 } | |
719 dvd_chapter=guiIntfStruct.Chapter; | |
720 dvd_angle=guiIntfStruct.Angle; | |
721 break; | |
722 #endif | |
723 } | |
724 //if ( guiIntfStruct.StreamType != STREAMTYPE_PLAYLIST ) // Does not make problems anymore! | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
725 { |
23077 | 726 if ( guiIntfStruct.Filename ) filename=gstrdup( guiIntfStruct.Filename ); |
727 else if ( filename ) guiSetFilename( guiIntfStruct.Filename,filename ); | |
728 } | |
729 // --- video opts | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
730 |
23077 | 731 if ( !video_driver_list ) |
732 { | |
733 int i = 0; | |
734 while ( video_out_drivers[i++] ) | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
735 if ( video_out_drivers[i - 1]->control( VOCTRL_GUISUPPORT,NULL ) == VO_TRUE ) |
23077 | 736 { |
737 gaddlist( &video_driver_list,(char *)video_out_drivers[i - 1]->info->short_name ); | |
738 break; | |
739 } | |
740 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
741 |
30516 | 742 if ( !video_driver_list && !video_driver_list[0] ) { gtkMessageBox( GTK_MB_FATAL,MSGTR_IDFGCVD ); exit_player(EXIT_ERROR); } |
23077 | 743 |
744 { | |
745 int i = 0; | |
746 guiIntfStruct.NoWindow=False; | |
747 while ( video_out_drivers[i++] ) | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
748 if ( video_out_drivers[i - 1]->control( VOCTRL_GUISUPPORT,NULL ) == VO_TRUE ) |
23077 | 749 { |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
750 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 ) ) |
23077 | 751 { guiIntfStruct.NoWindow=True; break; } |
752 } | |
753 } | |
754 | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
755 #ifdef CONFIG_DXR3 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
756 #ifdef CONFIG_LIBAVCODEC |
23077 | 757 remove_vf( "lavc" ); |
758 #endif | |
759 if ( video_driver_list && !gstrcmp( video_driver_list[0],"dxr3" ) ) | |
760 { | |
761 if ( ( guiIntfStruct.StreamType != STREAMTYPE_DVD)&&( guiIntfStruct.StreamType != STREAMTYPE_VCD ) ) | |
762 { | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
763 #ifdef CONFIG_LIBAVCODEC |
23077 | 764 if ( gtkVfLAVC ) add_vf( "lavc" ); |
765 #endif | |
766 } | |
767 } | |
768 #endif | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
769 // --- |
23077 | 770 if ( gtkVfPP ) add_vf( "pp" ); |
771 else remove_vf( "pp" ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
772 |
23077 | 773 // --- audio opts |
774 // if ( ao_plugin_cfg.plugin_list ) { free( ao_plugin_cfg.plugin_list ); ao_plugin_cfg.plugin_list=NULL; } | |
775 if (gtkAONorm) | |
776 greplace(&af_cfg.list, "volnorm", "volnorm"); | |
777 if (gtkEnableAudioEqualizer) | |
778 greplace(&af_cfg.list, "equalizer", "equalizer"); | |
779 if ( gtkAOExtraStereo ) | |
780 { | |
781 char *name = malloc(12 + 20 + 1); | |
782 snprintf(name, 12 + 20, "extrastereo=%f", gtkAOExtraStereoMul); | |
783 name[12 + 20] = 0; | |
784 greplace(&af_cfg.list, "extrastereo", name); | |
785 free(name); | |
786 } | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
787 #ifdef CONFIG_OSS_AUDIO |
23077 | 788 if ( audio_driver_list && !gstrncmp( audio_driver_list[0],"oss",3 ) ) |
789 { | |
790 char *tmp; | |
791 mixer_device = gtkAOOSSMixer; | |
792 mixer_channel = gtkAOOSSMixerChannel; | |
793 if (gtkAOOSSDevice) { | |
794 tmp = calloc( 1,strlen( gtkAOOSSDevice ) + 7 ); | |
795 sprintf( tmp,"oss:%s",gtkAOOSSDevice ); | |
796 } else | |
797 tmp = strdup("oss"); | |
798 gaddlist( &audio_driver_list,tmp ); | |
799 free(tmp); | |
800 } | |
801 #endif | |
27390
9d95dc936e66
Introduce CONFIG_ALSA preprocessor directive for ALSA 0.9 and 1.x.
diego
parents:
27387
diff
changeset
|
802 #ifdef CONFIG_ALSA |
23077 | 803 if ( audio_driver_list && !gstrncmp( audio_driver_list[0],"alsa",4 ) ) |
804 { | |
805 char *tmp; | |
806 mixer_device = gtkAOALSAMixer; | |
807 mixer_channel = gtkAOALSAMixerChannel; | |
808 if (gtkAOALSADevice) { | |
809 tmp = calloc( 1,strlen( gtkAOALSADevice ) + 14 ); | |
810 sprintf( tmp,"alsa:device=%s",gtkAOALSADevice ); | |
811 } else | |
812 tmp = strdup("alsa"); | |
813 gaddlist( &audio_driver_list,tmp ); | |
814 free(tmp); | |
815 } | |
816 #endif | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
817 #ifdef CONFIG_SDL |
23077 | 818 if ( audio_driver_list && !gstrncmp( audio_driver_list[0],"sdl",3 ) ) |
819 { | |
820 char *tmp; | |
821 if (gtkAOSDLDriver) { | |
822 tmp = calloc( 1,strlen( gtkAOSDLDriver ) + 10 ); | |
823 sprintf( tmp,"sdl:%s",gtkAOSDLDriver ); | |
824 } else | |
825 tmp = strdup("sdl"); | |
826 gaddlist( &audio_driver_list,tmp ); | |
827 free(tmp); | |
828 } | |
829 #endif | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
830 #ifdef CONFIG_ESD |
23077 | 831 if ( audio_driver_list && !gstrncmp( audio_driver_list[0],"esd",3 ) ) |
832 { | |
833 char *tmp; | |
834 if (gtkAOESDDevice) { | |
835 tmp = calloc( 1,strlen( gtkAOESDDevice ) + 10 ); | |
836 sprintf( tmp,"esd:%s",gtkAOESDDevice ); | |
837 } else | |
838 tmp = strdup("esd"); | |
839 gaddlist( &audio_driver_list,tmp ); | |
840 free(tmp); | |
841 } | |
842 #endif | |
843 // -- subtitle | |
844 //subdata->filename=gstrdup( guiIntfStruct.Subtitlename ); | |
845 stream_dump_type=0; | |
846 if ( gtkSubDumpMPSub ) stream_dump_type=4; | |
847 if ( gtkSubDumpSrt ) stream_dump_type=6; | |
848 gtkSubDumpMPSub=gtkSubDumpSrt=0; | |
849 guiLoadFont(); | |
850 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
851 // --- misc |
23077 | 852 if ( gtkCacheOn ) stream_cache_size=gtkCacheSize; |
853 if ( gtkAutoSyncOn ) autosync=gtkAutoSync; | |
854 | |
855 if ( guiIntfStruct.AudioFile ) audio_stream=gstrdup( guiIntfStruct.AudioFile ); | |
856 else if ( guiIntfStruct.FilenameChanged ) gfree( (void**)&audio_stream ); | |
857 //audio_stream=NULL; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
858 |
23077 | 859 guiIntfStruct.DiskChanged=0; |
860 guiIntfStruct.FilenameChanged=0; | |
861 guiIntfStruct.NewPlay=0; | |
862 | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
863 #ifdef CONFIG_ASS |
23077 | 864 ass_enabled = gtkASS.enabled; |
865 ass_use_margins = gtkASS.use_margins; | |
866 ass_top_margin = gtkASS.top_margin; | |
867 ass_bottom_margin = gtkASS.bottom_margin; | |
868 #endif | |
869 | |
870 break; | |
871 } | |
872 return False; | |
873 } | |
874 | |
875 void guiEventHandling( void ) | |
876 { | |
877 if ( !guiIntfStruct.Playing || guiIntfStruct.NoWindow ) wsHandleEvents(); | |
878 gtkEventHandling(); | |
879 } | |
880 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
881 // --- |
23077 | 882 |
883 float gtkEquChannels[6][10]; | |
884 | |
885 plItem * plCurrent = NULL; | |
886 plItem * plList = NULL; | |
887 plItem * plLastPlayed = NULL; | |
888 | |
889 URLItem *URLList = NULL; | |
890 | |
891 char *fsHistory[fsPersistant_MaxPos] = { NULL,NULL,NULL,NULL,NULL }; | |
892 | |
893 #if defined( MP_DEBUG ) && 0 | |
894 void list( void ) | |
895 { | |
896 plItem * next = plList; | |
897 printf( "--- list ---\n" ); | |
898 while( next || next->next ) | |
899 { | |
900 printf( "item: %s/%s\n",next->path,next->name ); | |
901 if ( next->next ) next=next->next; else break; | |
902 } | |
903 printf( "--- end of list ---\n" ); | |
904 } | |
905 #else | |
906 #define list(); | |
907 #endif | |
908 | |
909 void * gtkSet( int cmd,float fparam, void * vparam ) | |
910 { | |
911 equalizer_t * eq = (equalizer_t *)vparam; | |
912 plItem * item = (plItem *)vparam; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
913 |
23077 | 914 URLItem * url_item = (URLItem *)vparam; |
915 int is_added = True; | |
916 | |
917 switch ( cmd ) | |
918 { | |
919 // --- handle playlist | |
920 case gtkAddPlItem: // add item to playlist | |
921 if ( plList ) | |
922 { | |
923 plItem * next = plList; | |
924 while ( next->next ) { /*printf( "%s\n",next->name );*/ next=next->next; } | |
925 next->next=item; item->prev=next; | |
926 } else { item->prev=item->next=NULL; plCurrent=plList=item; } | |
927 list(); | |
928 return NULL; | |
929 case gtkInsertPlItem: // add item into playlist after current | |
930 if ( plCurrent ) | |
931 { | |
932 plItem * curr = plCurrent; | |
933 item->next=curr->next; | |
934 if (item->next) | |
935 item->next->prev=item; | |
936 item->prev=curr; | |
937 curr->next=item; | |
938 plCurrent=plCurrent->next; | |
939 return plCurrent; | |
940 } | |
941 else | |
942 return gtkSet(gtkAddPlItem,0,(void*)item); | |
943 return NULL; | |
944 case gtkGetNextPlItem: // get current item from playlist | |
945 if ( plCurrent && plCurrent->next) | |
946 { | |
947 plCurrent=plCurrent->next; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
948 /*if ( !plCurrent && plList ) |
23077 | 949 { |
950 plItem * next = plList; | |
951 while ( next->next ) { if ( !next->next ) break; next=next->next; } | |
952 plCurrent=next; | |
953 }*/ | |
954 return plCurrent; | |
955 } | |
956 return NULL; | |
957 case gtkGetPrevPlItem: | |
958 if ( plCurrent && plCurrent->prev) | |
959 { | |
960 plCurrent=plCurrent->prev; | |
961 //if ( !plCurrent && plList ) plCurrent=plList; | |
962 return plCurrent; | |
963 } | |
964 return NULL; | |
965 case gtkSetCurrPlItem: // set current item | |
966 plCurrent=item; | |
967 return plCurrent; | |
968 case gtkGetCurrPlItem: // get current item | |
969 return plCurrent; | |
970 case gtkDelCurrPlItem: // delete current item | |
971 { | |
972 plItem * curr = plCurrent; | |
973 | |
974 if (!curr) | |
975 return NULL; | |
976 if (curr->prev) | |
977 curr->prev->next=curr->next; | |
978 if (curr->next) | |
979 curr->next->prev=curr->prev; | |
980 if (curr==plList) | |
981 plList=curr->next; | |
982 plCurrent=curr->next; | |
983 // Free it | |
984 if ( curr->path ) free( curr->path ); | |
985 if ( curr->name ) free( curr->name ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
986 free( curr ); |
23077 | 987 } |
988 mplCurr(); // Instead of using mplNext && mplPrev | |
989 | |
990 return plCurrent; | |
991 case gtkDelPl: // delete list | |
992 { | |
993 plItem * curr = plList; | |
994 plItem * next; | |
995 if ( !plList ) return NULL; | |
996 if ( !curr->next ) | |
997 { | |
998 if ( curr->path ) free( curr->path ); | |
999 if ( curr->name ) free( curr->name ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
1000 free( curr ); |
23077 | 1001 } |
1002 else | |
1003 { | |
1004 while ( curr->next ) | |
1005 { | |
1006 next=curr->next; | |
1007 if ( curr->path ) free( curr->path ); | |
1008 if ( curr->name ) free( curr->name ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
1009 free( curr ); |
23077 | 1010 curr=next; |
1011 } | |
1012 } | |
1013 plList=NULL; plCurrent=NULL; | |
1014 } | |
1015 return NULL; | |
1016 // ----- Handle url | |
1017 case gtkAddURLItem: | |
1018 if ( URLList ) | |
1019 { | |
1020 URLItem * next_url = URLList; | |
1021 is_added = False; | |
1022 while ( next_url->next ) | |
1023 { | |
1024 if ( !gstrcmp( next_url->url,url_item->url ) ) | |
1025 { | |
1026 is_added=True; | |
1027 break; | |
1028 } | |
1029 next_url=next_url->next; | |
1030 } | |
1031 if ( ( !is_added )&&( gstrcmp( next_url->url,url_item->url ) ) ) next_url->next=url_item; | |
1032 } else { url_item->next=NULL; URLList=url_item; } | |
1033 return NULL; | |
1034 // --- subtitle | |
27393 | 1035 #ifndef CONFIG_FREETYPE |
23077 | 1036 case gtkSetFontFactor: |
1037 font_factor=fparam; | |
1038 guiLoadFont(); | |
1039 return NULL; | |
1040 #else | |
1041 case gtkSetFontOutLine: | |
1042 subtitle_font_thickness=( 8.0f / 100.0f ) * fparam; | |
1043 guiLoadFont(); | |
1044 return NULL; | |
1045 case gtkSetFontBlur: | |
1046 subtitle_font_radius=( 8.0f / 100.0f ) * fparam; | |
1047 guiLoadFont(); | |
1048 return NULL; | |
1049 case gtkSetFontTextScale: | |
1050 text_font_scale_factor=fparam; | |
1051 guiLoadFont(); | |
1052 return NULL; | |
1053 case gtkSetFontOSDScale: | |
1054 osd_font_scale_factor=fparam; | |
1055 guiLoadFont(); | |
1056 return NULL; | |
1057 case gtkSetFontEncoding: | |
1058 gfree( (void **)&subtitle_font_encoding ); | |
1059 subtitle_font_encoding=gstrdup( (char *)vparam ); | |
1060 guiLoadFont(); | |
1061 return NULL; | |
1062 case gtkSetFontAutoScale: | |
1063 subtitle_autoscale=(int)fparam; | |
1064 guiLoadFont(); | |
1065 return NULL; | |
1066 #endif | |
27393 | 1067 #ifdef CONFIG_ICONV |
23077 | 1068 case gtkSetSubEncoding: |
1069 gfree( (void **)&sub_cp ); | |
1070 sub_cp=gstrdup( (char *)vparam ); | |
1071 break; | |
1072 #endif | |
1073 // --- misc | |
1074 case gtkClearStruct: | |
1075 if ( (unsigned int)vparam & guiFilenames ) | |
1076 { | |
1077 gfree( (void **)&guiIntfStruct.Filename ); | |
1078 gfree( (void **)&guiIntfStruct.Subtitlename ); | |
1079 gfree( (void **)&guiIntfStruct.AudioFile ); | |
1080 gtkSet( gtkDelPl,0,NULL ); | |
1081 } | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
1082 #ifdef CONFIG_DVDREAD |
23077 | 1083 if ( (unsigned int)vparam & guiDVD ) memset( &guiIntfStruct.DVD,0,sizeof( guiDVDStruct ) ); |
1084 #endif | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
1085 #ifdef CONFIG_VCD |
23077 | 1086 if ( (unsigned int)vparam & guiVCD ) guiIntfStruct.VCDTracks=0; |
1087 #endif | |
1088 return NULL; | |
1089 case gtkSetExtraStereo: | |
1090 gtkAOExtraStereoMul=fparam; | |
1091 if (guiIntfStruct.afilter) | |
1092 af_control_any_rev(guiIntfStruct.afilter, | |
1093 AF_CONTROL_ES_MUL | AF_CONTROL_SET, >kAOExtraStereoMul); | |
1094 return NULL; | |
1095 case gtkSetPanscan: | |
1096 { | |
1097 mp_cmd_t * mp_cmd; | |
1098 mp_cmd=calloc( 1,sizeof( *mp_cmd ) ); | |
1099 mp_cmd->id=MP_CMD_PANSCAN; mp_cmd->name=strdup( "panscan" ); | |
1100 mp_cmd->args[0].v.f=fparam; mp_cmd->args[1].v.i=1; | |
1101 mp_input_queue_cmd( mp_cmd ); | |
1102 } | |
1103 return NULL; | |
1104 case gtkSetAutoq: | |
1105 auto_quality=(int)fparam; | |
1106 return NULL; | |
1107 // --- set equalizers | |
1108 case gtkSetContrast: | |
1109 if ( guiIntfStruct.sh_video ) set_video_colors( guiIntfStruct.sh_video,"contrast",(int)fparam ); | |
1110 return NULL; | |
1111 case gtkSetBrightness: | |
1112 if ( guiIntfStruct.sh_video ) set_video_colors( guiIntfStruct.sh_video,"brightness",(int)fparam ); | |
1113 return NULL; | |
1114 case gtkSetHue: | |
1115 if ( guiIntfStruct.sh_video ) set_video_colors( guiIntfStruct.sh_video,"hue",(int)fparam ); | |
1116 return NULL; | |
1117 case gtkSetSaturation: | |
1118 if ( guiIntfStruct.sh_video ) set_video_colors( guiIntfStruct.sh_video,"saturation",(int)fparam ); | |
1119 return NULL; | |
1120 case gtkSetEqualizer: | |
1121 { | |
1122 af_control_ext_t tmp; | |
1123 if ( eq ) | |
1124 { | |
1125 gtkEquChannels[eq->channel][eq->band]=eq->gain; | |
1126 tmp.ch = eq->channel; | |
1127 tmp.arg = gtkEquChannels[eq->channel]; | |
1128 if (guiIntfStruct.afilter) | |
1129 af_control_any_rev(guiIntfStruct.afilter, | |
1130 AF_CONTROL_EQUALIZER_GAIN | AF_CONTROL_SET, &tmp); | |
1131 } | |
1132 else | |
1133 { | |
1134 int i; | |
1135 memset( gtkEquChannels,0,sizeof( gtkEquChannels ) ); | |
1136 if (guiIntfStruct.afilter) | |
1137 for ( i=0;i<6;i++ ) | |
1138 { | |
1139 tmp.ch = i; | |
1140 tmp.arg = gtkEquChannels[i]; | |
1141 af_control_any_rev(guiIntfStruct.afilter, | |
1142 AF_CONTROL_EQUALIZER_GAIN | AF_CONTROL_SET, &tmp); | |
1143 } | |
1144 } | |
1145 return NULL; | |
1146 } | |
1147 } | |
1148 return NULL; | |
1149 } | |
1150 | |
1151 #define mp_basename(s) (strrchr(s,'/')==NULL?(char*)s:(strrchr(s,'/')+1)) | |
1152 | |
1153 #include "playtree.h" | |
1154 | |
1155 //This function adds/inserts one file into the gui playlist | |
1156 | |
30535
016e5fc1dead
GUI: Mark functions that are not used outside their files as static.
diego
parents:
30516
diff
changeset
|
1157 static int import_file_into_gui(char* temp, int insert) |
23077 | 1158 { |
1159 char *filename, *pathname; | |
1160 plItem * item; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
1161 |
23077 | 1162 filename = strdup(mp_basename(temp)); |
1163 pathname = strdup(temp); | |
1164 if (strlen(pathname)-strlen(filename)>0) | |
1165 pathname[strlen(pathname)-strlen(filename)-1]='\0'; // We have some path so remove / at end | |
1166 else | |
1167 pathname[strlen(pathname)-strlen(filename)]='\0'; | |
1168 mp_msg(MSGT_PLAYTREE,MSGL_V, "Adding filename %s && pathname %s\n",filename,pathname); //FIXME: Change to MSGL_DBG2 ? | |
1169 item=calloc( 1,sizeof( plItem ) ); | |
1170 if (!item) | |
1171 return 0; | |
1172 item->name=filename; | |
1173 item->path=pathname; | |
1174 if (insert) | |
1175 gtkSet( gtkInsertPlItem,0,(void*)item ); // Inserts the item after current, and makes current=item | |
1176 else | |
1177 gtkSet( gtkAddPlItem,0,(void*)item ); | |
1178 return 1; | |
1179 } | |
1180 | |
1181 | |
1182 // This function imports the initial playtree (based on cmd-line files) into the gui playlist | |
1183 // by either: | |
1184 // - overwriting gui pl (enqueue=0) | |
1185 // - appending it to gui pl (enqueue=1) | |
1186 | |
1187 int import_initial_playtree_into_gui(play_tree_t* my_playtree, m_config_t* config, int enqueue) | |
1188 { | |
1189 play_tree_iter_t* my_pt_iter=NULL; | |
1190 int result=0; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
1191 |
23077 | 1192 if (!enqueue) // Delete playlist before "appending" |
1193 gtkSet(gtkDelPl,0,0); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
1194 |
23077 | 1195 if((my_pt_iter=pt_iter_create(&my_playtree,config))) |
1196 { | |
1197 while ((filename=pt_iter_get_next_file(my_pt_iter))!=NULL) | |
1198 { | |
1199 if (import_file_into_gui(filename, 0)) // Add it to end of list | |
1200 result=1; | |
1201 } | |
1202 } | |
1203 | |
1204 mplCurr(); // Update filename | |
1205 mplGotoTheNext=1; | |
1206 | |
1207 if (!enqueue) | |
1208 filename=guiIntfStruct.Filename; // Backward compatibility; if file is specified on commandline, | |
1209 // gmplayer does directly start in Play-Mode. | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
1210 else |
23077 | 1211 filename=NULL; |
1212 | |
1213 return result; | |
1214 } | |
1215 | |
1216 // This function imports and inserts an playtree, that is created "on the fly", for example by | |
1217 // parsing some MOV-Reference-File; or by loading an playlist with "File Open" | |
1218 // | |
1219 // The file which contained the playlist is thereby replaced with it's contents. | |
1220 | |
1221 int import_playtree_playlist_into_gui(play_tree_t* my_playtree, m_config_t* config) | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
1222 { |
23077 | 1223 play_tree_iter_t* my_pt_iter=NULL; |
1224 int result=0; | |
1225 plItem * save=(plItem*)gtkSet( gtkGetCurrPlItem, 0, 0); // Save current item | |
1226 | |
1227 if((my_pt_iter=pt_iter_create(&my_playtree,config))) | |
1228 { | |
1229 while ((filename=pt_iter_get_next_file(my_pt_iter))!=NULL) | |
1230 { | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
1231 if (import_file_into_gui(filename, 1)) // insert it into the list and set plCurrent=new item |
23077 | 1232 result=1; |
1233 } | |
1234 pt_iter_destroy(&my_pt_iter); | |
1235 } | |
1236 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
1237 if (save) |
23077 | 1238 gtkSet(gtkSetCurrPlItem, 0, (void*)save); |
1239 else | |
1240 gtkSet(gtkSetCurrPlItem, 0, (void*)plList); // go to head, if plList was empty before | |
1241 | |
1242 if (save && result) | |
1243 gtkSet(gtkDelCurrPlItem, 0, 0); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
1244 |
23077 | 1245 mplCurr(); // Update filename |
1246 filename=NULL; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
1247 |
23077 | 1248 return result; |
1249 } | |
1250 | |
1251 // wrapper function for mp_msg to display a message box for errors and warnings. | |
1252 | |
1253 void guiMessageBox(int level, char * str) { | |
1254 switch(level) { | |
1255 case MSGL_FATAL: | |
1256 gtkMessageBox(GTK_MB_FATAL|GTK_MB_SIMPLE, str); | |
1257 break; | |
1258 case MSGL_ERR: | |
1259 gtkMessageBox(GTK_MB_ERROR|GTK_MB_SIMPLE, str); | |
1260 break; | |
1261 #if 0 | |
1262 // WARNING! Do NOT enable this! There are too many non-critical messages with | |
1263 // MSGL_WARN, for example: broken SPU packets, codec's bit error messages, | |
1264 // etc etc, they should not raise up a new window every time. | |
1265 case MSGL_WARN: | |
1266 gtkMessageBox(GTK_MB_WARNING|GTK_MB_SIMPLE, str); | |
1267 break; | |
1268 #endif | |
1269 } | |
1270 } |