Mercurial > mplayer.hg
annotate Gui/interface.c @ 9056:3086611e8213
- add subcp
- fix some 10l in gui
- fix one 10l bug in subreader
author | pontscho |
---|---|
date | Tue, 21 Jan 2003 19:12:46 +0000 |
parents | 4a42c0604ce1 |
children | 731e5dc57436 |
rev | line source |
---|---|
8058 | 1 |
4845 | 2 #include <inttypes.h> |
3 #include <stdlib.h> | |
4 #include <stdio.h> | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
5 #include <string.h> |
8058 | 6 #include <sys/types.h> |
4798 | 7 |
8058 | 8 #include "wm/ws.h" |
9 #include "wm/wsxdnd.h" | |
4798 | 10 #include "interface.h" |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
11 #include "skin/skin.h" |
8058 | 12 |
6627 | 13 #include "mplayer/gtk/eq.h" |
8058 | 14 #include "mplayer/widgets.h" |
15 #include "mplayer/mplayer.h" | |
8423 | 16 #include "mplayer/play.h" |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
17 |
4798 | 18 #include "../mplayer.h" |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
19 #include "app.h" |
6794 | 20 #include "cfg.h" |
21 #include "../help_mp.h" | |
22 #include "../subreader.h" | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
23 #include "../libvo/x11_common.h" |
5789 | 24 #include "../libvo/video_out.h" |
6794 | 25 #include "../libvo/font_load.h" |
7169 | 26 #include "../libvo/sub.h" |
4858 | 27 #include "../input/input.h" |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
28 #include "../libao2/audio_out.h" |
6627 | 29 #include "../mixer.h" |
30 #include "../libao2/audio_plugin.h" | |
31 #include "../libao2/eq.h" | |
5789 | 32 |
6996 | 33 #ifdef USE_ICONV |
7128 | 34 #include <iconv.h> |
6996 | 35 #endif |
36 | |
5665 | 37 #include "../libmpdemux/stream.h" |
5789 | 38 #include "../libmpdemux/demuxer.h" |
7217 | 39 #include "../libmpdemux/stheader.h" |
40 #include "../libmpcodecs/dec_video.h" | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
41 |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
42 guiInterface_t guiIntfStruct; |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
43 |
6627 | 44 char * gstrcat( char ** dest,char * src ) |
45 { | |
46 char * tmp = NULL; | |
47 | |
48 if ( !src ) return NULL; | |
49 | |
50 if ( *dest ) | |
51 { | |
52 tmp=malloc( strlen( *dest ) + strlen( src ) + 1 ); | |
53 strcpy( tmp,*dest ); strcat( tmp,src ); free( *dest ); | |
54 } | |
55 else | |
56 { tmp=malloc( strlen( src ) + 1 ); strcpy( tmp,src ); } | |
57 *dest=tmp; | |
58 return tmp; | |
59 } | |
60 | |
6794 | 61 int gstrcmp( char * a,char * b ) |
62 { | |
63 if ( !a && !b ) return 0; | |
64 if ( !a || !b ) return -1; | |
65 return strcmp( a,b ); | |
66 } | |
67 | |
7019 | 68 int gstrncmp( char * a,char * b,int size ) |
69 { | |
70 if ( !a && !b ) return 0; | |
71 if ( !a || !b ) return -1; | |
72 return strncmp( a,b,size ); | |
73 } | |
74 | |
6794 | 75 char * gstrdup( char * str ) |
76 { | |
77 if ( !str ) return NULL; | |
78 return strdup( str ); | |
79 } | |
80 | |
8284 | 81 char * gstrchr( char * str,int c ) |
82 { | |
83 if ( !str ) return NULL; | |
84 return strchr( str,c ); | |
85 } | |
86 | |
6794 | 87 void gfree( void ** p ) |
88 { | |
89 if ( *p == NULL ) return; | |
90 free( *p ); *p=NULL; | |
91 } | |
92 | |
93 void gset( char ** str,char * what ) | |
94 { | |
7887
0e5544951425
A small patch to Gui/interface.c; the first fix is a plain bug, the second is
arpi
parents:
7707
diff
changeset
|
95 if ( *str ) { if ( !strstr( *str,what ) ) { gstrcat( str,"," ); gstrcat( str,what ); }} |
6794 | 96 else gstrcat( str,what ); |
97 } | |
98 | |
7582 | 99 void gaddlist( char *** list,char * entry ) |
100 { | |
101 int i; | |
102 | |
103 if ( (*list) ) | |
104 { | |
105 for ( i=0;(*list)[i];i++ ) free( (*list)[i] ); | |
106 free( (*list) ); | |
107 } | |
108 | |
109 (*list)=malloc( 8 ); | |
110 (*list)[0]=gstrdup( entry ); | |
111 (*list)[1]=NULL; | |
112 } | |
113 | |
6996 | 114 #ifdef USE_ICONV |
115 char * gconvert_uri_to_filename( char * str ) | |
116 { | |
117 iconv_t d; | |
118 char * out = strdup( str ); | |
119 char * tmp = NULL; | |
120 char * ize; | |
121 size_t inb,outb; | |
122 char * charset = "ISO8859-1"; | |
123 char * cs; | |
124 | |
125 if ( !strchr( str,'%' ) ) return str; | |
126 | |
127 { | |
128 char * t = calloc( 1,strlen( out ) ); | |
129 int i,c = 0; | |
130 for ( i=0;i < (int)strlen( out );i++ ) | |
131 if ( out[i] != '%' ) t[c++]=out[i]; | |
132 else | |
133 { | |
134 char tmp[4] = "0xXX"; | |
135 // if ( out[++i] == '%' ) { t[c++]='%'; continue; }; | |
136 tmp[2]=out[++i]; tmp[3]=out[++i]; | |
137 t[c++]=(char)strtol( tmp,(char **)NULL,0 ); | |
138 } | |
139 free( out ); | |
140 out=t; | |
141 } | |
142 | |
143 if ( (cs=getenv( "CHARSET" )) && *cs ) charset=cs; | |
144 | |
145 inb=outb=strlen( out ); | |
146 tmp=calloc( 1,outb + 1 ); | |
147 ize=tmp; | |
148 d=iconv_open( charset,"UTF-8" ); | |
149 if ( (iconv_t)(-1) == d ) return str; | |
150 iconv( d,&out,&inb,&tmp,&outb ); | |
151 iconv_close( d ); | |
152 free( out ); | |
153 return ize; | |
154 } | |
155 #endif | |
156 | |
6218 | 157 void guiInit( void ) |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
158 { |
8058 | 159 int i; |
160 | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
161 memset( &guiIntfStruct,0,sizeof( guiIntfStruct ) ); |
6898 | 162 guiIntfStruct.Balance=50.0f; |
163 guiIntfStruct.StreamType=-1; | |
164 | |
6627 | 165 memset( >kEquChannels,0,sizeof( gtkEquChannels ) ); |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8484
diff
changeset
|
166 #ifdef USE_OSS_AUDIO |
7706 | 167 if ( !gtkAOOSSMixer ) gtkAOOSSMixer=strdup( PATH_DEV_MIXER ); |
168 if ( !gtkAOOSSDevice ) gtkAOOSSDevice=strdup( PATH_DEV_DSP ); | |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8484
diff
changeset
|
169 #endif |
7707 | 170 #ifdef HAVE_DXR3 |
7706 | 171 if ( !gtkDXR3Device ) gtkDXR3Device=strdup( "/dev/em8300-0" ); |
7707 | 172 #endif |
8311 | 173 fullscreen=gtkLoadFullscreen; |
174 if ( stream_cache_size != -1 ) { gtkCacheOn=1; gtkCacheSize=stream_cache_size; } | |
175 if ( autosync && autosync != gtkAutoSync ) { gtkAutoSyncOn=1; gtkAutoSync=autosync; } | |
6898 | 176 |
177 gtkInit(); | |
8043 | 178 // --- initialize X |
6912 | 179 wsXInit( (void *)mDisplay ); |
8058 | 180 // --- load skin |
8043 | 181 skinDirInHome=get_path("Skin"); |
182 skinMPlayerDir=DATADIR "/Skin"; | |
183 printf("SKIN dir 1: '%s'\n",skinDirInHome); | |
184 printf("SKIN dir 2: '%s'\n",skinMPlayerDir); | |
185 if ( !skinName ) skinName=strdup( "default" ); | |
186 switch ( skinRead( skinName ) ) | |
187 { | |
188 case -1: mp_msg( MSGT_GPLAYER,MSGL_ERR,MSGTR_SKIN_SKINCFG_SkinNotFound,skinName ); exit( 0 ); | |
189 case -2: mp_msg( MSGT_GPLAYER,MSGL_ERR,MSGTR_SKIN_SKINCFG_SkinCfgReadError,skinName ); exit( 0 ); | |
190 } | |
8058 | 191 // --- initialize windows |
192 if ( ( mplDrawBuffer = (unsigned char *)calloc( 1,appMPlayer.main.Bitmap.ImageSize ) ) == NULL ) | |
193 { | |
194 fprintf( stderr,MSGTR_NEMDB ); | |
195 exit( 0 ); | |
196 } | |
197 | |
198 wsCreateWindow( &appMPlayer.subWindow, | |
199 appMPlayer.sub.x,appMPlayer.sub.y,appMPlayer.sub.width,appMPlayer.sub.height, | |
200 wsNoBorder,wsShowMouseCursor|wsHandleMouseButton|wsHandleMouseMove,wsShowFrame|wsHideWindow,"ViDEO" ); | |
201 | |
202 wsDestroyImage( &appMPlayer.subWindow ); | |
203 wsCreateImage( &appMPlayer.subWindow,appMPlayer.sub.Bitmap.Width,appMPlayer.sub.Bitmap.Height ); | |
204 wsXDNDMakeAwareness(&appMPlayer.subWindow); | |
205 | |
8973 | 206 mplMenuInit(); |
207 mplPBInit(); | |
208 | |
8058 | 209 vo_setwindow( appMPlayer.subWindow.WindowID, appMPlayer.subWindow.wGC ); |
210 | |
211 // i=wsHideFrame|wsMaxSize|wsHideWindow; | |
212 // if ( appMPlayer.mainDecoration ) i=wsShowFrame|wsMaxSize|wsHideWindow; | |
213 i=wsShowFrame|wsMaxSize|wsHideWindow; | |
214 wsCreateWindow( &appMPlayer.mainWindow, | |
215 appMPlayer.main.x,appMPlayer.main.y,appMPlayer.main.width,appMPlayer.main.height, | |
8949 | 216 wsNoBorder,wsShowMouseCursor|wsHandleMouseButton|wsHandleMouseMove,i,"MPlayer" ); |
8058 | 217 |
218 wsSetShape( &appMPlayer.mainWindow,appMPlayer.main.Mask.Image ); | |
219 wsXDNDMakeAwareness(&appMPlayer.mainWindow); | |
220 | |
221 #ifdef DEBUG | |
222 mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[main] Depth on screen: %d\n",wsDepthOnScreen ); | |
223 mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[main] parent: 0x%x\n",(int)appMPlayer.mainWindow.WindowID ); | |
224 mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[main] sub: 0x%x\n",(int)appMPlayer.subWindow.WindowID ); | |
225 #endif | |
226 | |
227 appMPlayer.mainWindow.ReDraw=(void *)mplMainDraw; | |
228 appMPlayer.mainWindow.MouseHandler=mplMainMouseHandle; | |
229 appMPlayer.mainWindow.KeyHandler=mplMainKeyHandle; | |
230 appMPlayer.mainWindow.DandDHandler=mplDandDHandler; | |
231 | |
232 appMPlayer.subWindow.ReDraw=(void *)mplSubDraw; | |
233 appMPlayer.subWindow.MouseHandler=mplSubMouseHandle; | |
234 appMPlayer.subWindow.KeyHandler=mplMainKeyHandle; | |
235 appMPlayer.subWindow.DandDHandler=mplDandDHandler; | |
236 | |
8973 | 237 wsSetBackgroundRGB( &appMPlayer.subWindow,appMPlayer.sub.R,appMPlayer.sub.G,appMPlayer.sub.B ); |
8058 | 238 wsClearWindow( appMPlayer.subWindow ); |
239 if ( appMPlayer.sub.Bitmap.Image ) wsConvert( &appMPlayer.subWindow,appMPlayer.sub.Bitmap.Image,appMPlayer.sub.Bitmap.ImageSize ); | |
240 | |
241 btnModify( evSetVolume,guiIntfStruct.Volume ); | |
242 btnModify( evSetBalance,guiIntfStruct.Balance ); | |
243 btnModify( evSetMoviePosition,guiIntfStruct.Position ); | |
244 | |
245 wsSetIcon( wsDisplay,appMPlayer.mainWindow.WindowID,guiIcon,guiIconMask ); | |
246 wsSetIcon( wsDisplay,appMPlayer.subWindow.WindowID,guiIcon,guiIconMask ); | |
247 | |
248 guiIntfStruct.Playing=0; | |
249 | |
250 if ( !appMPlayer.mainDecoration ) wsWindowDecoration( &appMPlayer.mainWindow,0 ); | |
251 | |
252 wsVisibleWindow( &appMPlayer.mainWindow,wsShowWindow ); | |
253 #if 1 | |
254 wsVisibleWindow( &appMPlayer.subWindow,wsShowWindow ); | |
255 | |
256 { | |
257 XEvent xev; | |
258 do { XNextEvent( wsDisplay,&xev ); } while ( xev.type != MapNotify || xev.xmap.event != appMPlayer.subWindow.WindowID ); | |
259 appMPlayer.subWindow.Mapped=wsMapped; | |
260 } | |
261 | |
262 if ( fullscreen ) | |
263 { | |
264 mplFullScreen(); | |
265 btnModify( evFullScreen,btnPressed ); | |
266 } | |
267 #endif | |
268 mplSubRender=1; | |
8043 | 269 // --- |
7538 | 270 |
8423 | 271 if ( filename ) mplSetFileName( NULL,filename,STREAMTYPE_FILE ); |
7009 | 272 if ( plCurrent && !filename ) mplSetFileName( plCurrent->path,plCurrent->name,STREAMTYPE_FILE ); |
6973 | 273 if ( sub_name ) guiSetFilename( guiIntfStruct.Subtitlename,sub_name ); |
6797
06d29dbdf20d
upsz, sorry, i forgott this :) (skin name saving:)
pontscho
parents:
6794
diff
changeset
|
274 #if defined( USE_OSD ) || defined( USE_SUB ) |
06d29dbdf20d
upsz, sorry, i forgott this :) (skin name saving:)
pontscho
parents:
6794
diff
changeset
|
275 guiLoadFont(); |
06d29dbdf20d
upsz, sorry, i forgott this :) (skin name saving:)
pontscho
parents:
6794
diff
changeset
|
276 #endif |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
277 } |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
278 |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
279 void guiDone( void ) |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
280 { |
8883 | 281 mplMainRender=0; |
8043 | 282 mp_msg( MSGT_GPLAYER,MSGL_V,"[gui] done.\n" ); |
6794 | 283 cfg_write(); |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
284 wsXDone(); |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
285 } |
4798 | 286 |
4858 | 287 int guiCMDArray[] = |
288 { | |
8883 | 289 evLoadPlay, |
4858 | 290 evLoadSubtitle, |
291 evAbout, | |
292 evPlay, | |
293 evStop, | |
294 evPlayList, | |
295 evPreferences, | |
296 evFullScreen, | |
297 evSkinBrowser | |
298 }; | |
299 | |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
300 extern ao_functions_t * audio_out; |
6755 | 301 extern vo_functions_t * video_out; |
6794 | 302 extern int frame_dropping; |
303 extern int stream_dump_type; | |
304 extern char ** vo_plugin_args; | |
305 | |
306 #if defined( USE_OSD ) || defined( USE_SUB ) | |
307 void guiLoadFont( void ) | |
308 { | |
7122
0dc9cb756b68
freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
7111
diff
changeset
|
309 #ifdef HAVE_FREETYPE |
8635
81dbd28ef7c0
these patches let ,,oldstyle'' and freetype subtitle renderers live
arpi
parents:
8615
diff
changeset
|
310 load_font_ft(vo_image_width, vo_image_height); |
7122
0dc9cb756b68
freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
7111
diff
changeset
|
311 #else |
6794 | 312 if ( vo_font ) |
313 { | |
314 int i; | |
315 if ( vo_font->name ) free( vo_font->name ); | |
316 if ( vo_font->fpath ) free( vo_font->fpath ); | |
317 for ( i=0;i<16;i++ ) | |
318 if ( vo_font->pic_a[i] ) | |
319 { | |
320 if ( vo_font->pic_a[i]->bmp ) free( vo_font->pic_a[i]->bmp ); | |
321 if ( vo_font->pic_a[i]->pal ) free( vo_font->pic_a[i]->pal ); | |
322 } | |
323 for ( i=0;i<16;i++ ) | |
324 if ( vo_font->pic_b[i] ) | |
325 { | |
326 if ( vo_font->pic_b[i]->bmp ) free( vo_font->pic_b[i]->bmp ); | |
327 if ( vo_font->pic_b[i]->pal ) free( vo_font->pic_b[i]->pal ); | |
328 } | |
329 free( vo_font ); vo_font=NULL; | |
330 } | |
7019 | 331 if ( font_name ) |
6794 | 332 { |
7019 | 333 vo_font=read_font_desc( font_name,font_factor,0 ); |
6794 | 334 if ( !vo_font ) mp_msg( MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadFont,font_name ); |
335 } | |
336 else | |
337 { | |
7019 | 338 font_name=gstrdup( get_path( "font/font.desc" ) ); |
339 vo_font=read_font_desc( font_name,font_factor,0 ); | |
6794 | 340 if ( !vo_font ) |
341 { | |
7019 | 342 gfree( (void **)&font_name ); font_name=gstrdup( DATADIR"/font/font.desc" ); |
343 vo_font=read_font_desc( font_name,font_factor,0 ); | |
6794 | 344 } |
345 } | |
7122
0dc9cb756b68
freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
7111
diff
changeset
|
346 #endif |
6794 | 347 } |
348 #endif | |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
349 |
7150 | 350 #ifdef USE_SUB |
7169 | 351 extern mp_osd_obj_t* vo_osd_list; |
352 | |
7150 | 353 void guiLoadSubtitle( char * name ) |
354 { | |
355 if ( guiIntfStruct.Playing == 0 ) | |
356 { | |
357 guiIntfStruct.SubtitleChanged=1; | |
358 return; | |
359 } | |
360 if ( subtitles ) | |
361 { | |
7169 | 362 mp_msg( MSGT_GPLAYER,MSGL_INFO,"[gui] Delete subtitles.\n" ); |
7150 | 363 sub_free( subtitles ); |
7169 | 364 subtitles=NULL; |
7170 | 365 gfree( (void **)&sub_name ); |
7150 | 366 vo_sub=NULL; |
7169 | 367 if ( vo_osd_list ) |
368 { | |
369 int len; | |
370 mp_osd_obj_t * osd = vo_osd_list; | |
371 while ( osd ) | |
372 { | |
373 if ( osd->type == OSDTYPE_SUBTITLE ) break; | |
374 osd=osd->next; | |
375 } | |
376 if ( osd && osd->flags&OSDFLAG_VISIBLE ) | |
377 { | |
378 len=osd->stride * ( osd->bbox.y2 - osd->bbox.y1 ); | |
379 memset( osd->bitmap_buffer,0,len ); | |
380 memset( osd->alpha_buffer,0,len ); | |
381 } | |
382 } | |
7150 | 383 } |
7169 | 384 if ( name ) |
385 { | |
386 mp_msg( MSGT_GPLAYER,MSGL_INFO,"[gui] Delete Load subtitle: %s\n",name ); | |
387 sub_name=gstrdup( name ); | |
388 subtitles=sub_read_file( sub_name,guiIntfStruct.FPS ); | |
9056 | 389 if ( !subtitles ) mp_msg( MSGT_GPLAYER,MSGL_ERR,MSGTR_CantLoadSub,name ); |
7169 | 390 } |
7150 | 391 } |
392 #endif | |
393 | |
7009 | 394 static void add_vop( char * str ) |
395 { | |
396 mp_msg( MSGT_GPLAYER,MSGL_STATUS,"[gui] add video filter: %s\n",str ); | |
397 if ( vo_plugin_args ) | |
398 { | |
399 int i = 0; | |
400 while ( vo_plugin_args[i] ) if ( !gstrcmp( vo_plugin_args[i++],str ) ) { i=-1; break; } | |
401 if ( i != -1 ) | |
402 { vo_plugin_args=realloc( vo_plugin_args,( i + 2 ) * sizeof( char * ) ); vo_plugin_args[i]=strdup( str ); vo_plugin_args[i+1]=NULL; } | |
403 } else { vo_plugin_args=malloc( 2 * sizeof( char * ) ); vo_plugin_args[0]=strdup( str ); vo_plugin_args[1]=NULL; } | |
404 } | |
405 | |
406 static void remove_vop( char * str ) | |
407 { | |
408 int n = 0; | |
409 | |
410 if ( !vo_plugin_args ) return; | |
411 | |
412 mp_msg( MSGT_GPLAYER,MSGL_STATUS,"[gui] remove video filter: %s\n",str ); | |
413 | |
414 while ( vo_plugin_args[n++] ); n--; | |
415 if ( n > -1 ) | |
416 { | |
417 int i = 0,m = -1; | |
418 while ( vo_plugin_args[i] ) if ( !gstrcmp( vo_plugin_args[i++],str ) ) { m=i - 1; break; } | |
419 i--; | |
420 if ( m > -1 ) | |
421 { | |
422 if ( n == 1 ) { free( vo_plugin_args[0] ); free( vo_plugin_args ); vo_plugin_args=NULL; } | |
423 else memcpy( &vo_plugin_args[i],&vo_plugin_args[i + 1],( n - i ) * sizeof( char * ) ); | |
424 } | |
425 } | |
426 } | |
427 | |
428 int guiGetEvent( int type,char * arg ) | |
4798 | 429 { |
6280 | 430 stream_t * stream = (stream_t *) arg; |
5672
1f8b34f1e7c0
ifdef reading dvd args, without it non-dvd compilation fails.
eyck
parents:
5665
diff
changeset
|
431 #ifdef USE_DVDREAD |
5665 | 432 dvd_priv_t * dvdp = (dvd_priv_t *) arg; |
5672
1f8b34f1e7c0
ifdef reading dvd args, without it non-dvd compilation fails.
eyck
parents:
5665
diff
changeset
|
433 #endif |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
434 |
4798 | 435 switch ( type ) |
436 { | |
437 case guiXEvent: | |
8973 | 438 guiIntfStruct.event_struct=(void *)arg; |
4798 | 439 wsEvents( wsDisplay,(XEvent *)arg,NULL ); |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
440 gtkEventHandling(); |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
441 break; |
4798 | 442 case guiCEvent: |
4963 | 443 switch ( (int)arg ) |
444 { | |
8423 | 445 case guiSetPlay: guiIntfStruct.Playing=1; break; |
446 case guiSetStop: guiIntfStruct.Playing=0; break; | |
447 case guiSetPause: guiIntfStruct.Playing=2; break; | |
4963 | 448 } |
8423 | 449 mplState(); |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
450 break; |
5665 | 451 case guiSetState: |
452 mplState(); | |
453 break; | |
454 case guiSetFileName: | |
455 if ( arg ) guiSetFilename( guiIntfStruct.Filename,arg ); | |
456 break; | |
5789 | 457 case guiSetAudioOnly: |
458 guiIntfStruct.AudioOnly=(int)arg; | |
7009 | 459 if ( (int)arg ) { guiIntfStruct.NoWindow=True; wsVisibleWindow( &appMPlayer.subWindow,wsHideWindow ); } |
5789 | 460 else wsVisibleWindow( &appMPlayer.subWindow,wsShowWindow ); |
461 break; | |
8312
ef8c992672f4
- audio track handling in menu (idea from R«ädiger Kuhlmann)
pontscho
parents:
8311
diff
changeset
|
462 case guiSetDemuxer: |
ef8c992672f4
- audio track handling in menu (idea from R«ädiger Kuhlmann)
pontscho
parents:
8311
diff
changeset
|
463 guiIntfStruct.demuxer=(void *)arg; |
ef8c992672f4
- audio track handling in menu (idea from R«ädiger Kuhlmann)
pontscho
parents:
8311
diff
changeset
|
464 break; |
5789 | 465 case guiSetShVideo: |
466 { | |
5986 | 467 if ( !appMPlayer.subWindow.isFullScreen ) |
468 { | |
469 wsResizeWindow( &appMPlayer.subWindow,vo_dwidth,vo_dheight ); | |
470 wsMoveWindow( &appMPlayer.subWindow,True,appMPlayer.sub.x,appMPlayer.sub.y ); | |
471 } | |
5955
caac20b1ca79
fix xmga fs, resize to movie size and mouse auto hide + dga
pontscho
parents:
5945
diff
changeset
|
472 guiIntfStruct.MovieWidth=vo_dwidth; |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
473 guiIntfStruct.MovieHeight=vo_dheight; |
5789 | 474 } |
475 break; | |
5665 | 476 #ifdef USE_DVDREAD |
477 case guiSetDVD: | |
478 guiIntfStruct.DVD.titles=dvdp->vmg_file->tt_srpt->nr_of_srpts; | |
479 guiIntfStruct.DVD.chapters=dvdp->vmg_file->tt_srpt->title[dvd_title].nr_of_ptts; | |
480 guiIntfStruct.DVD.angles=dvdp->vmg_file->tt_srpt->title[dvd_title].nr_of_angles; | |
481 guiIntfStruct.DVD.nr_of_audio_channels=dvdp->nr_of_channels; | |
482 memcpy( guiIntfStruct.DVD.audio_streams,dvdp->audio_streams,sizeof( dvdp->audio_streams ) ); | |
483 guiIntfStruct.DVD.nr_of_subtitles=dvdp->nr_of_subtitles; | |
484 memcpy( guiIntfStruct.DVD.subtitles,dvdp->subtitles,sizeof( dvdp->subtitles ) ); | |
485 guiIntfStruct.DVD.current_title=dvd_title + 1; | |
486 guiIntfStruct.DVD.current_chapter=dvd_chapter + 1; | |
487 guiIntfStruct.DVD.current_angle=dvd_angle + 1; | |
488 guiIntfStruct.Track=dvd_title + 1; | |
489 break; | |
490 #endif | |
6280 | 491 case guiSetStream: |
492 guiIntfStruct.StreamType=stream->type; | |
493 switch( stream->type ) | |
494 { | |
7150 | 495 #ifdef USE_DVDREAD |
6280 | 496 case STREAMTYPE_DVD: |
497 guiGetEvent( guiSetDVD,(char *)stream->priv ); | |
498 break; | |
7150 | 499 #endif |
6280 | 500 #ifdef HAVE_VCD |
501 case STREAMTYPE_VCD: | |
502 { | |
503 int i; | |
504 for ( i=1;i < 100;i++ ) | |
505 if ( vcd_seek_to_track( stream->fd,i ) < 0 ) break; | |
506 vcd_seek_to_track( stream->fd,vcd_track ); | |
507 guiIntfStruct.VCDTracks=--i; | |
508 break; | |
509 } | |
510 #endif | |
7150 | 511 default: break; |
6280 | 512 } |
513 break; | |
4858 | 514 case guiIEvent: |
515 printf( "cmd: %d\n",(int)arg ); | |
516 switch( (int)arg ) | |
517 { | |
518 case MP_CMD_QUIT: | |
519 mplEventHandling( evExit,0 ); | |
520 break; | |
521 case MP_CMD_VO_FULLSCREEN: | |
522 mplEventHandling( evFullScreen,0 ); | |
523 break; | |
524 default: | |
525 mplEventHandling( guiCMDArray[ (int)arg - MP_CMD_GUI_EVENTS - 1 ],0 ); | |
526 } | |
527 break; | |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
528 case guiReDraw: |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
529 mplEventHandling( evRedraw,0 ); |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
530 break; |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
531 case guiSetVolume: |
6903 | 532 if ( audio_out ) |
533 { | |
534 float l,r; | |
535 mixer_getvolume( &l,&r ); | |
536 guiIntfStruct.Volume=(r>l?r:l); | |
537 if ( r != l ) guiIntfStruct.Balance=( ( r - l ) + 100 ) * 0.5f; | |
538 else guiIntfStruct.Balance=50.0f; | |
539 btnModify( evSetVolume,guiIntfStruct.Volume ); | |
540 btnModify( evSetBalance,guiIntfStruct.Balance ); | |
541 } | |
542 break; | |
7009 | 543 case guiSetFileFormat: |
544 guiIntfStruct.FileFormat=(int)arg; | |
545 break; | |
6903 | 546 case guiSetValues: |
6912 | 547 // -- video |
7217 | 548 guiIntfStruct.sh_video=arg; |
6912 | 549 if ( arg ) |
550 { | |
7217 | 551 sh_video_t * sh = (sh_video_t *)arg; |
7150 | 552 guiIntfStruct.FPS=sh->fps; |
6912 | 553 } |
7009 | 554 |
555 if ( guiIntfStruct.NoWindow ) wsVisibleWindow( &appMPlayer.subWindow,wsHideWindow ); | |
8280
72700fefd3dc
no seeking if stream is STREAMTYPE_STREAM (net/stdin)
pontscho
parents:
8150
diff
changeset
|
556 |
8300 | 557 if ( guiIntfStruct.StreamType == STREAMTYPE_STREAM ) btnSet( evSetMoviePosition,btnDisabled ); |
558 else btnSet( evSetMoviePosition,btnReleased ); | |
8284 | 559 |
6794 | 560 // -- audio |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
561 if ( audio_out ) |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
562 { |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
563 float l,r; |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
564 mixer_getvolume( &l,&r ); |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
565 guiIntfStruct.Volume=(r>l?r:l); |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
566 if ( r != l ) guiIntfStruct.Balance=( ( r - l ) + 100 ) * 0.5f; |
6627 | 567 else guiIntfStruct.Balance=50.0f; |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
568 btnModify( evSetVolume,guiIntfStruct.Volume ); |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
569 btnModify( evSetBalance,guiIntfStruct.Balance ); |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
570 } |
6627 | 571 |
572 if ( gtkEnableAudioEqualizer ) | |
573 { | |
574 equalizer_t eq; | |
575 int i,j; | |
576 for ( i=0;i<6;i++ ) | |
577 for ( j=0;j<10;j++ ) | |
578 { | |
579 eq.channel=i; eq.band=j; eq.gain=gtkEquChannels[i][j]; | |
580 gtkSet( gtkSetEqualizer,0,&eq ); | |
581 } | |
582 } | |
6794 | 583 // -- subtitle |
7009 | 584 #ifdef HAVE_DXR3 |
8043 | 585 if ( video_driver_list && !gstrcmp( video_driver_list[0],"dxr3" ) && guiIntfStruct.FileFormat != DEMUXER_TYPE_MPEG_PS |
586 #ifdef USE_LIBAVCODEC | |
587 && !gtkVopLAVC | |
588 #endif | |
589 #ifdef USE_LIBFAME | |
590 && !gtkVopFAME | |
591 #endif | |
592 ) | |
7009 | 593 { |
594 gtkMessageBox( GTK_MB_FATAL,MSGTR_NEEDLAVCFAME ); | |
595 guiIntfStruct.Playing=0; | |
596 return True; | |
597 } | |
598 #endif | |
6627 | 599 break; |
600 case guiSetDefaults: | |
9055 | 601 // if ( guiIntfStruct.Playing == 1 && guiIntfStruct.FilenameChanged ) |
602 if ( guiIntfStruct.FilenameChanged ) | |
8423 | 603 { |
604 audio_id=-1; | |
605 video_id=-1; | |
606 dvdsub_id=-1; | |
607 vobsub_id=-1; | |
608 stream_cache_size=-1; | |
609 autosync=0; | |
610 vcd_track=0; | |
611 dvd_title=0; | |
9055 | 612 force_fps=0; |
8423 | 613 } |
614 wsPostRedisplay( &appMPlayer.subWindow ); | |
615 break; | |
616 case guiSetParameters: | |
9055 | 617 guiGetEvent( guiSetDefaults,NULL ); |
8423 | 618 switch ( guiIntfStruct.StreamType ) |
619 { | |
620 case STREAMTYPE_PLAYLIST: | |
621 break; | |
622 #ifdef HAVE_VCD | |
623 case STREAMTYPE_VCD: | |
624 vcd_track=guiIntfStruct.Track; | |
625 break; | |
626 #endif | |
627 #ifdef USE_DVDREAD | |
628 case STREAMTYPE_DVD: | |
629 dvd_title=guiIntfStruct.Title; | |
630 dvd_chapter=guiIntfStruct.Chapter; | |
631 dvd_angle=guiIntfStruct.Angle; | |
632 break; | |
633 #endif | |
6794 | 634 } |
8423 | 635 if ( guiIntfStruct.StreamType != STREAMTYPE_PLAYLIST ) |
636 { | |
637 if ( guiIntfStruct.Filename ) filename=gstrdup( guiIntfStruct.Filename ); | |
638 else if ( filename ) guiSetFilename( guiIntfStruct.Filename,filename ); | |
639 } | |
7009 | 640 // --- video opts |
7019 | 641 |
7582 | 642 if ( !video_driver_list ) |
6794 | 643 { |
6797
06d29dbdf20d
upsz, sorry, i forgott this :) (skin name saving:)
pontscho
parents:
6794
diff
changeset
|
644 int i = 0; |
6903 | 645 while ( video_out_drivers[i++] ) |
646 if ( video_out_drivers[i - 1]->control( VOCTRL_GUISUPPORT,NULL ) == VO_TRUE ) | |
647 { | |
8150 | 648 gaddlist( &video_driver_list,(char *)video_out_drivers[i - 1]->info->short_name ); |
6903 | 649 break; |
650 } | |
6794 | 651 } |
652 | |
7582 | 653 if ( !video_driver_list && !video_driver_list[0] ) { gtkMessageBox( GTK_MB_FATAL,MSGTR_IDFGCVD ); exit_player( "gui init" ); } |
7009 | 654 |
655 { | |
656 int i = 0; | |
657 guiIntfStruct.NoWindow=False; | |
658 while ( video_out_drivers[i++] ) | |
659 if ( video_out_drivers[i - 1]->control( VOCTRL_GUISUPPORT,NULL ) == VO_TRUE ) | |
6794 | 660 { |
8150 | 661 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 ) ) |
7009 | 662 { guiIntfStruct.NoWindow=True; break; } |
6794 | 663 } |
7009 | 664 } |
665 | |
666 #ifdef HAVE_DXR3 | |
8043 | 667 #ifdef USE_LIBAVCODEC |
7009 | 668 remove_vop( "lavc" ); |
8043 | 669 #endif |
670 #ifdef USE_LIBFAME | |
7009 | 671 remove_vop( "fame" ); |
8043 | 672 #endif |
7582 | 673 if ( video_driver_list && !gstrcmp( video_driver_list[0],"dxr3" ) ) |
7009 | 674 { |
675 if ( ( guiIntfStruct.StreamType != STREAMTYPE_DVD)&&( guiIntfStruct.StreamType != STREAMTYPE_VCD ) ) | |
676 { | |
8043 | 677 #ifdef USE_LIBAVCODEC |
7009 | 678 if ( gtkVopLAVC ) add_vop( "lavc" ); |
8043 | 679 #endif |
680 #ifdef USE_LIBFAME | |
7009 | 681 if ( gtkVopFAME ) add_vop( "fame" ); |
8043 | 682 #endif |
7009 | 683 } |
684 } | |
685 #endif | |
686 // --- | |
7019 | 687 if ( gtkVopPP ) add_vop( "pp" ); |
688 else remove_vop( "pp" ); | |
6794 | 689 |
690 // --- audio opts | |
7887
0e5544951425
A small patch to Gui/interface.c; the first fix is a plain bug, the second is
arpi
parents:
7707
diff
changeset
|
691 // if ( ao_plugin_cfg.plugin_list ) { free( ao_plugin_cfg.plugin_list ); ao_plugin_cfg.plugin_list=NULL; } |
6840 | 692 if ( gtkAONorm ) gset( &ao_plugin_cfg.plugin_list,"volnorm" ); |
6794 | 693 if ( gtkEnableAudioEqualizer ) gset( &ao_plugin_cfg.plugin_list,"eq" ); |
694 if ( gtkAOExtraStereo ) | |
695 { | |
696 gset( &ao_plugin_cfg.plugin_list,"extrastereo" ); | |
697 ao_plugin_cfg.pl_extrastereo_mul=gtkAOExtraStereoMul; | |
698 } | |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8484
diff
changeset
|
699 #ifdef USE_OSS_AUDIO |
8484 | 700 mixer_device=gstrdup( gtkAOOSSMixer ); |
7582 | 701 if ( audio_driver_list && !gstrncmp( audio_driver_list[0],"oss",3 ) && gtkAOOSSDevice ) |
6794 | 702 { |
8423 | 703 char * tmp = calloc( 1,strlen( gtkAOOSSDevice ) + 7 ); |
7019 | 704 sprintf( tmp,"oss:%s",gtkAOOSSDevice ); |
7582 | 705 gaddlist( &audio_driver_list,tmp ); |
7019 | 706 } |
8615 | 707 #endif |
8714
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8635
diff
changeset
|
708 #ifdef HAVE_SDL |
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8635
diff
changeset
|
709 if ( audio_driver_list && !gstrncmp( audio_driver_list[0],"sdl",3 ) && gtkAOSDLDriver ) |
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8635
diff
changeset
|
710 { |
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8635
diff
changeset
|
711 char * tmp = calloc( 1,strlen( gtkAOSDLDriver ) + 10 ); |
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8635
diff
changeset
|
712 sprintf( tmp,"sdl:%s",gtkAOSDLDriver ); |
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8635
diff
changeset
|
713 gaddlist( &audio_driver_list,tmp ); |
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8635
diff
changeset
|
714 } |
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8635
diff
changeset
|
715 #endif |
6794 | 716 // -- subtitle |
717 #ifdef USE_SUB | |
7170 | 718 sub_name=gstrdup( guiIntfStruct.Subtitlename ); |
6794 | 719 stream_dump_type=0; |
720 if ( gtkSubDumpMPSub ) stream_dump_type=4; | |
721 if ( gtkSubDumpSrt ) stream_dump_type=6; | |
722 gtkSubDumpMPSub=gtkSubDumpSrt=0; | |
6627 | 723 #endif |
6794 | 724 #if defined( USE_OSD ) || defined( USE_SUB ) |
725 guiLoadFont(); | |
6627 | 726 #endif |
727 | |
6794 | 728 // --- misc |
8423 | 729 if ( gtkCacheOn ) stream_cache_size=gtkCacheSize; |
8484 | 730 if ( gtkAutoSyncOn ) autosync=gtkAutoSync; |
8423 | 731 |
8484 | 732 if ( guiIntfStruct.AudioFile ) audio_stream=gstrdup( guiIntfStruct.AudioFile ); |
733 else if ( guiIntfStruct.FilenameChanged ) gfree( (void**)&audio_stream ); | |
734 //audio_stream=NULL; | |
6627 | 735 |
8423 | 736 guiIntfStruct.DiskChanged=0; |
737 guiIntfStruct.FilenameChanged=0; | |
738 guiIntfStruct.NewPlay=0; | |
739 | |
6627 | 740 break; |
4798 | 741 } |
7009 | 742 return False; |
4798 | 743 } |
744 | |
745 void guiEventHandling( void ) | |
746 { | |
7009 | 747 if ( !guiIntfStruct.Playing || guiIntfStruct.NoWindow ) wsHandleEvents(); |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
748 gtkEventHandling(); |
4798 | 749 } |
6627 | 750 |
751 // --- | |
752 | |
753 float gtkEquChannels[6][10]; | |
754 | |
6713 | 755 plItem * plCurrent = NULL; |
756 plItem * plList = NULL; | |
757 plItem * plLastPlayed = NULL; | |
758 | |
7092
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
759 URLItem *URLList = NULL; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
760 |
9055 | 761 char *fsHistory[fsPersistant_MaxPos] = { NULL,NULL,NULL,NULL,NULL }; |
762 | |
6713 | 763 #if defined( MP_DEBUG ) && 0 |
764 void list( void ) | |
6627 | 765 { |
6713 | 766 plItem * next = plList; |
767 printf( "--- list ---\n" ); | |
768 while( next || next->next ) | |
769 { | |
770 printf( "item: %s/%s\n",next->path,next->name ); | |
771 if ( next->next ) next=next->next; else break; | |
772 } | |
773 printf( "--- end of list ---\n" ); | |
774 } | |
775 #else | |
776 #define list(); | |
777 #endif | |
778 | |
779 void * gtkSet( int cmd,float fparam, void * vparam ) | |
780 { | |
6627 | 781 equalizer_t * eq = (equalizer_t *)vparam; |
6713 | 782 plItem * item = (plItem *)vparam; |
6627 | 783 |
7092
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
784 URLItem * url_item = (URLItem *)vparam; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
785 int is_added = True; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
786 |
6627 | 787 switch ( cmd ) |
788 { | |
6713 | 789 // --- handle playlist |
6755 | 790 case gtkAddPlItem: // add item to playlist |
6713 | 791 if ( plList ) |
792 { | |
793 plItem * next = plList; | |
794 while ( next->next ) { /*printf( "%s\n",next->name );*/ next=next->next; } | |
795 next->next=item; item->prev=next; | |
7092
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
796 } else { item->prev=item->next=NULL; plCurrent=plList=item; } |
6713 | 797 list(); |
798 return NULL; | |
799 case gtkGetNextPlItem: // get current item from playlist | |
800 if ( plCurrent ) | |
801 { | |
802 plCurrent=plCurrent->next; | |
803 if ( !plCurrent && plList ) | |
804 { | |
805 plItem * next = plList; | |
806 while ( next->next ) { if ( !next->next ) break; next=next->next; } | |
807 plCurrent=next; | |
808 } | |
809 return plCurrent; | |
810 } | |
811 return NULL; | |
812 case gtkGetPrevPlItem: | |
813 if ( plCurrent ) | |
814 { | |
815 plCurrent=plCurrent->prev; | |
816 if ( !plCurrent && plList ) plCurrent=plList; | |
817 return plCurrent; | |
818 } | |
6794 | 819 return NULL; |
6713 | 820 case gtkGetCurrPlItem: // get current item |
821 return plCurrent; | |
822 case gtkDelPl: // delete list | |
823 { | |
824 plItem * curr = plList; | |
825 plItem * next; | |
826 if ( !plList ) return NULL; | |
827 if ( !curr->next ) | |
828 { | |
829 if ( curr->path ) free( curr->path ); | |
830 if ( curr->name ) free( curr->name ); | |
831 free( curr ); | |
832 } | |
833 else | |
834 { | |
835 while ( curr->next ) | |
836 { | |
837 next=curr->next; | |
838 if ( curr->path ) free( curr->path ); | |
839 if ( curr->name ) free( curr->name ); | |
840 free( curr ); | |
841 curr=next; | |
842 } | |
843 } | |
844 plList=NULL; plCurrent=NULL; | |
845 } | |
846 return NULL; | |
7092
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
847 // ----- Handle url |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
848 case gtkAddURLItem: |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
849 if ( URLList ) |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
850 { |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
851 URLItem * next_url = URLList; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
852 is_added = False; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
853 while ( next_url->next ) |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
854 { |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
855 if ( !gstrcmp( next_url->url,url_item->url ) ) |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
856 { |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
857 is_added=True; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
858 break; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
859 } |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
860 next_url=next_url->next; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
861 } |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
862 if ( ( !is_added )&&( gstrcmp( next_url->url,url_item->url ) ) ) next_url->next=url_item; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
863 } else { url_item->next=NULL; URLList=url_item; } |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
864 return NULL; |
6794 | 865 // --- subtitle |
7139 | 866 #ifndef HAVE_FREETYPE |
6794 | 867 case gtkSetFontFactor: |
7019 | 868 font_factor=fparam; |
6794 | 869 guiLoadFont(); |
870 return NULL; | |
7139 | 871 #else |
872 case gtkSetFontOutLine: | |
873 subtitle_font_thickness=( 8.0f / 100.0f ) * fparam; | |
874 guiLoadFont(); | |
875 return NULL; | |
876 case gtkSetFontBlur: | |
877 subtitle_font_radius=( 8.0f / 100.0f ) * fparam; | |
878 guiLoadFont(); | |
879 return NULL; | |
880 case gtkSetFontTextScale: | |
881 text_font_scale_factor=fparam; | |
882 guiLoadFont(); | |
883 return NULL; | |
884 case gtkSetFontOSDScale: | |
885 osd_font_scale_factor=fparam; | |
886 guiLoadFont(); | |
887 return NULL; | |
888 case gtkSetFontEncoding: | |
9056 | 889 gfree( (void **)&subtitle_font_encoding ); |
7139 | 890 subtitle_font_encoding=gstrdup( (char *)vparam ); |
891 guiLoadFont(); | |
892 return NULL; | |
893 case gtkSetFontAutoScale: | |
894 subtitle_autoscale=(int)fparam; | |
895 guiLoadFont(); | |
896 return NULL; | |
897 #endif | |
9056 | 898 #ifdef USE_ICONV |
899 case gtkSetSubEncoding: | |
900 gfree( (void **)&sub_cp ); | |
901 sub_cp=gstrdup( (char *)vparam ); | |
902 break; | |
6794 | 903 #endif |
904 // --- misc | |
905 case gtkClearStruct: | |
7009 | 906 if ( (unsigned int)vparam & guiFilenames ) |
6794 | 907 { |
908 gfree( (void **)&guiIntfStruct.Filename ); | |
909 gfree( (void **)&guiIntfStruct.Subtitlename ); | |
910 gfree( (void **)&guiIntfStruct.AudioFile ); | |
7009 | 911 gtkSet( gtkDelPl,0,NULL ); |
6794 | 912 } |
913 #ifdef USE_DVDREAD | |
7009 | 914 if ( (unsigned int)vparam & guiDVD ) memset( &guiIntfStruct.DVD,0,sizeof( guiDVDStruct ) ); |
6794 | 915 #endif |
916 #ifdef HAVE_VCD | |
7009 | 917 if ( (unsigned int)vparam & guiVCD ) guiIntfStruct.VCDTracks=0; |
6794 | 918 #endif |
919 return NULL; | |
920 case gtkSetExtraStereo: | |
921 gtkAOExtraStereoMul=fparam; | |
922 audio_plugin_extrastereo.control( AOCONTROL_PLUGIN_ES_SET,(int)>kAOExtraStereoMul ); | |
923 return NULL; | |
924 case gtkSetPanscan: | |
7217 | 925 { |
926 mp_cmd_t * mp_cmd; | |
927 mp_cmd=(mp_cmd_t *)calloc( 1,sizeof( *mp_cmd ) ); | |
928 mp_cmd->id=MP_CMD_PANSCAN; mp_cmd->name=strdup( "panscan" ); | |
929 mp_cmd->args[0].v.f=fparam; mp_cmd->args[1].v.i=1; | |
930 mp_input_queue_cmd( mp_cmd ); | |
931 } | |
6794 | 932 return NULL; |
933 case gtkSetAutoq: | |
7019 | 934 auto_quality=(int)fparam; |
6794 | 935 return NULL; |
6713 | 936 // --- set equalizers |
6627 | 937 case gtkSetContrast: |
7217 | 938 if ( guiIntfStruct.sh_video ) set_video_colors( guiIntfStruct.sh_video,"contrast",(int)fparam ); |
939 return NULL; | |
6627 | 940 case gtkSetBrightness: |
7217 | 941 if ( guiIntfStruct.sh_video ) set_video_colors( guiIntfStruct.sh_video,"brightness",(int)fparam ); |
942 return NULL; | |
6627 | 943 case gtkSetHue: |
7217 | 944 if ( guiIntfStruct.sh_video ) set_video_colors( guiIntfStruct.sh_video,"hue",(int)fparam ); |
945 return NULL; | |
6627 | 946 case gtkSetSaturation: |
7217 | 947 if ( guiIntfStruct.sh_video ) set_video_colors( guiIntfStruct.sh_video,"saturation",(int)fparam ); |
948 return NULL; | |
6627 | 949 case gtkSetEqualizer: |
950 if ( eq ) | |
951 { | |
952 gtkEquChannels[eq->channel][eq->band]=eq->gain; | |
953 audio_plugin_eq.control( AOCONTROL_PLUGIN_EQ_SET_GAIN,(int)eq ); | |
954 } | |
955 else | |
956 { | |
957 int i,j; equalizer_t tmp; tmp.gain=0.0f; | |
958 memset( gtkEquChannels,0,sizeof( gtkEquChannels ) ); | |
959 for ( i=0;i<6;i++ ) | |
960 for ( j=0;j<10;j++ ) | |
961 { tmp.channel=i; tmp.band=j; audio_plugin_eq.control( AOCONTROL_PLUGIN_EQ_SET_GAIN,(int)&tmp ); } | |
962 } | |
6713 | 963 return NULL; |
6627 | 964 } |
6713 | 965 return NULL; |
6627 | 966 } |