Mercurial > mplayer.hg
annotate Gui/interface.c @ 7168:cb1428dd4d79
assume $(CC) can compile c++ - fixes compile with non-default compiler
author | arpi |
---|---|
date | Fri, 30 Aug 2002 14:35:17 +0000 |
parents | 9e17b153b785 |
children | 35bab6be713b |
rev | line source |
---|---|
6280 | 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> |
4798 | 6 |
7 #include "ws.h" | |
8 #include "mplayer/play.h" | |
9 #include "interface.h" | |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
10 #include "skin/skin.h" |
6627 | 11 #include "mplayer/gtk/eq.h" |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
12 |
4798 | 13 #include "../mplayer.h" |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
14 #include "mplayer/widgets.h" |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
15 #include "mplayer/mplayer.h" |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
16 #include "app.h" |
6794 | 17 #include "cfg.h" |
18 #include "../help_mp.h" | |
19 #include "../subreader.h" | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
20 #include "../libvo/x11_common.h" |
5789 | 21 #include "../libvo/video_out.h" |
6794 | 22 #include "../libvo/font_load.h" |
4858 | 23 #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
|
24 #include "../libao2/audio_out.h" |
6627 | 25 #include "../mixer.h" |
26 #include "../libao2/audio_plugin.h" | |
27 #include "../libao2/eq.h" | |
5789 | 28 |
6280 | 29 #include <inttypes.h> |
30 #include <sys/types.h> | |
31 | |
6996 | 32 #ifdef USE_ICONV |
7128 | 33 #include <iconv.h> |
6996 | 34 #endif |
35 | |
5665 | 36 #include "../libmpdemux/stream.h" |
5789 | 37 #include "../libmpdemux/demuxer.h" |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
38 |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
39 guiInterface_t guiIntfStruct; |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
40 |
6627 | 41 char * gstrcat( char ** dest,char * src ) |
42 { | |
43 char * tmp = NULL; | |
44 | |
45 if ( !src ) return NULL; | |
46 | |
47 if ( *dest ) | |
48 { | |
49 tmp=malloc( strlen( *dest ) + strlen( src ) + 1 ); | |
50 strcpy( tmp,*dest ); strcat( tmp,src ); free( *dest ); | |
51 } | |
52 else | |
53 { tmp=malloc( strlen( src ) + 1 ); strcpy( tmp,src ); } | |
54 *dest=tmp; | |
55 return tmp; | |
56 } | |
57 | |
6794 | 58 int gstrcmp( char * a,char * b ) |
59 { | |
60 if ( !a && !b ) return 0; | |
61 if ( !a || !b ) return -1; | |
62 return strcmp( a,b ); | |
63 } | |
64 | |
7019 | 65 int gstrncmp( char * a,char * b,int size ) |
66 { | |
67 if ( !a && !b ) return 0; | |
68 if ( !a || !b ) return -1; | |
69 return strncmp( a,b,size ); | |
70 } | |
71 | |
6794 | 72 char * gstrdup( char * str ) |
73 { | |
74 if ( !str ) return NULL; | |
75 return strdup( str ); | |
76 } | |
77 | |
78 void gfree( void ** p ) | |
79 { | |
80 if ( *p == NULL ) return; | |
81 free( *p ); *p=NULL; | |
82 } | |
83 | |
84 void gset( char ** str,char * what ) | |
85 { | |
86 if ( *str ) { if ( !strstr( *str,what ) ) gstrcat( str,"," ); gstrcat( str,what ); } | |
87 else gstrcat( str,what ); | |
88 } | |
89 | |
6996 | 90 #ifdef USE_ICONV |
91 char * gconvert_uri_to_filename( char * str ) | |
92 { | |
93 iconv_t d; | |
94 char * out = strdup( str ); | |
95 char * tmp = NULL; | |
96 char * ize; | |
97 size_t inb,outb; | |
98 char * charset = "ISO8859-1"; | |
99 char * cs; | |
100 | |
101 if ( !strchr( str,'%' ) ) return str; | |
102 | |
103 { | |
104 char * t = calloc( 1,strlen( out ) ); | |
105 int i,c = 0; | |
106 for ( i=0;i < (int)strlen( out );i++ ) | |
107 if ( out[i] != '%' ) t[c++]=out[i]; | |
108 else | |
109 { | |
110 char tmp[4] = "0xXX"; | |
111 // if ( out[++i] == '%' ) { t[c++]='%'; continue; }; | |
112 tmp[2]=out[++i]; tmp[3]=out[++i]; | |
113 t[c++]=(char)strtol( tmp,(char **)NULL,0 ); | |
114 } | |
115 free( out ); | |
116 out=t; | |
117 } | |
118 | |
119 if ( (cs=getenv( "CHARSET" )) && *cs ) charset=cs; | |
120 | |
121 inb=outb=strlen( out ); | |
122 tmp=calloc( 1,outb + 1 ); | |
123 ize=tmp; | |
124 d=iconv_open( charset,"UTF-8" ); | |
125 if ( (iconv_t)(-1) == d ) return str; | |
126 iconv( d,&out,&inb,&tmp,&outb ); | |
127 iconv_close( d ); | |
128 free( out ); | |
129 return ize; | |
130 } | |
131 #endif | |
132 | |
6218 | 133 void guiInit( void ) |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
134 { |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
135 memset( &guiIntfStruct,0,sizeof( guiIntfStruct ) ); |
6898 | 136 guiIntfStruct.Balance=50.0f; |
137 guiIntfStruct.StreamType=-1; | |
138 | |
6627 | 139 memset( >kEquChannels,0,sizeof( gtkEquChannels ) ); |
6794 | 140 gtkAOOSSMixer=strdup( PATH_DEV_MIXER ); |
141 gtkAOOSSDevice=strdup( PATH_DEV_DSP ); | |
6898 | 142 |
143 gtkInit(); | |
6912 | 144 wsXInit( (void *)mDisplay ); |
145 | |
7019 | 146 // cfg_read(); |
6218 | 147 appInit( (void*)mDisplay ); |
6898 | 148 |
7009 | 149 if ( plCurrent && !filename ) mplSetFileName( plCurrent->path,plCurrent->name,STREAMTYPE_FILE ); |
6973 | 150 if ( sub_name ) guiSetFilename( guiIntfStruct.Subtitlename,sub_name ); |
6797
06d29dbdf20d
upsz, sorry, i forgott this :) (skin name saving:)
pontscho
parents:
6794
diff
changeset
|
151 #if defined( USE_OSD ) || defined( USE_SUB ) |
06d29dbdf20d
upsz, sorry, i forgott this :) (skin name saving:)
pontscho
parents:
6794
diff
changeset
|
152 guiLoadFont(); |
06d29dbdf20d
upsz, sorry, i forgott this :) (skin name saving:)
pontscho
parents:
6794
diff
changeset
|
153 #endif |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
154 } |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
155 |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
156 void guiDone( void ) |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
157 { |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
158 mp_msg( MSGT_GPLAYER,MSGL_V,"[mplayer] exit.\n" ); |
6794 | 159 cfg_write(); |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
160 gtkDone(); |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
161 wsXDone(); |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
162 } |
4798 | 163 |
4858 | 164 int guiCMDArray[] = |
165 { | |
166 evLoad, | |
167 evLoadSubtitle, | |
168 evAbout, | |
169 evPlay, | |
170 evStop, | |
171 evPlayList, | |
172 evPreferences, | |
173 evFullScreen, | |
174 evSkinBrowser | |
175 }; | |
176 | |
5789 | 177 typedef struct |
178 { | |
179 demux_stream_t *ds; | |
180 unsigned int format; | |
181 struct codecs_st *codec; | |
182 int inited; | |
183 // output format: | |
184 float timer; | |
185 float fps; | |
186 float frametime; | |
187 int i_bps; | |
188 int disp_w,disp_h; | |
189 } tmp_sh_video_t; | |
190 | |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
191 extern ao_functions_t * audio_out; |
6755 | 192 extern vo_functions_t * video_out; |
6794 | 193 extern int frame_dropping; |
194 extern int stream_dump_type; | |
195 extern char ** vo_plugin_args; | |
196 | |
197 #if defined( USE_OSD ) || defined( USE_SUB ) | |
198 void guiLoadFont( void ) | |
199 { | |
7122
0dc9cb756b68
freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
7111
diff
changeset
|
200 #ifdef HAVE_FREETYPE |
0dc9cb756b68
freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
7111
diff
changeset
|
201 load_font(vo_image_width, vo_image_height); |
0dc9cb756b68
freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
7111
diff
changeset
|
202 #else |
6794 | 203 if ( vo_font ) |
204 { | |
205 int i; | |
206 if ( vo_font->name ) free( vo_font->name ); | |
207 if ( vo_font->fpath ) free( vo_font->fpath ); | |
208 for ( i=0;i<16;i++ ) | |
209 if ( vo_font->pic_a[i] ) | |
210 { | |
211 if ( vo_font->pic_a[i]->bmp ) free( vo_font->pic_a[i]->bmp ); | |
212 if ( vo_font->pic_a[i]->pal ) free( vo_font->pic_a[i]->pal ); | |
213 } | |
214 for ( i=0;i<16;i++ ) | |
215 if ( vo_font->pic_b[i] ) | |
216 { | |
217 if ( vo_font->pic_b[i]->bmp ) free( vo_font->pic_b[i]->bmp ); | |
218 if ( vo_font->pic_b[i]->pal ) free( vo_font->pic_b[i]->pal ); | |
219 } | |
220 free( vo_font ); vo_font=NULL; | |
221 } | |
7019 | 222 if ( font_name ) |
6794 | 223 { |
7019 | 224 vo_font=read_font_desc( font_name,font_factor,0 ); |
6794 | 225 if ( !vo_font ) mp_msg( MSGT_CPLAYER,MSGL_ERR,MSGTR_CantLoadFont,font_name ); |
226 } | |
227 else | |
228 { | |
7019 | 229 font_name=gstrdup( get_path( "font/font.desc" ) ); |
230 vo_font=read_font_desc( font_name,font_factor,0 ); | |
6794 | 231 if ( !vo_font ) |
232 { | |
7019 | 233 gfree( (void **)&font_name ); font_name=gstrdup( DATADIR"/font/font.desc" ); |
234 vo_font=read_font_desc( font_name,font_factor,0 ); | |
6794 | 235 } |
236 } | |
7122
0dc9cb756b68
freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
7111
diff
changeset
|
237 #endif |
6794 | 238 } |
239 #endif | |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
240 |
7150 | 241 #ifdef USE_SUB |
242 void guiLoadSubtitle( char * name ) | |
243 { | |
244 if ( guiIntfStruct.Playing == 0 ) | |
245 { | |
246 guiIntfStruct.SubtitleChanged=1; | |
247 return; | |
248 } | |
249 if ( subtitles ) | |
250 { | |
251 sub_free( subtitles ); | |
252 if ( sub_name ) free( sub_name ); | |
253 sub_name=NULL; | |
254 vo_sub=NULL; | |
255 subtitles=NULL; | |
256 } | |
257 sub_name=gstrdup( name ); | |
258 subtitles=sub_read_file( sub_name,guiIntfStruct.FPS ); | |
259 } | |
260 #endif | |
261 | |
7009 | 262 static void add_vop( char * str ) |
263 { | |
264 mp_msg( MSGT_GPLAYER,MSGL_STATUS,"[gui] add video filter: %s\n",str ); | |
265 if ( vo_plugin_args ) | |
266 { | |
267 int i = 0; | |
268 while ( vo_plugin_args[i] ) if ( !gstrcmp( vo_plugin_args[i++],str ) ) { i=-1; break; } | |
269 if ( i != -1 ) | |
270 { vo_plugin_args=realloc( vo_plugin_args,( i + 2 ) * sizeof( char * ) ); vo_plugin_args[i]=strdup( str ); vo_plugin_args[i+1]=NULL; } | |
271 } else { vo_plugin_args=malloc( 2 * sizeof( char * ) ); vo_plugin_args[0]=strdup( str ); vo_plugin_args[1]=NULL; } | |
272 } | |
273 | |
274 static void remove_vop( char * str ) | |
275 { | |
276 int n = 0; | |
277 | |
278 if ( !vo_plugin_args ) return; | |
279 | |
280 mp_msg( MSGT_GPLAYER,MSGL_STATUS,"[gui] remove video filter: %s\n",str ); | |
281 | |
282 while ( vo_plugin_args[n++] ); n--; | |
283 if ( n > -1 ) | |
284 { | |
285 int i = 0,m = -1; | |
286 while ( vo_plugin_args[i] ) if ( !gstrcmp( vo_plugin_args[i++],str ) ) { m=i - 1; break; } | |
287 i--; | |
288 if ( m > -1 ) | |
289 { | |
290 if ( n == 1 ) { free( vo_plugin_args[0] ); free( vo_plugin_args ); vo_plugin_args=NULL; } | |
291 else memcpy( &vo_plugin_args[i],&vo_plugin_args[i + 1],( n - i ) * sizeof( char * ) ); | |
292 } | |
293 } | |
294 } | |
295 | |
296 int guiGetEvent( int type,char * arg ) | |
4798 | 297 { |
6280 | 298 stream_t * stream = (stream_t *) arg; |
5672
1f8b34f1e7c0
ifdef reading dvd args, without it non-dvd compilation fails.
eyck
parents:
5665
diff
changeset
|
299 #ifdef USE_DVDREAD |
5665 | 300 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
|
301 #endif |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
302 |
4798 | 303 switch ( type ) |
304 { | |
305 case guiXEvent: | |
306 wsEvents( wsDisplay,(XEvent *)arg,NULL ); | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
307 gtkEventHandling(); |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
308 break; |
4798 | 309 case guiCEvent: |
4963 | 310 switch ( (int)arg ) |
311 { | |
312 case guiSetPlay: guiIntfStruct.Playing=1; mplState(); break; | |
313 case guiSetStop: guiIntfStruct.Playing=0; mplState(); break; | |
314 case guiSetPause: guiIntfStruct.Playing=2; mplState(); break; | |
315 } | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
316 break; |
5665 | 317 case guiSetState: |
318 mplState(); | |
319 break; | |
320 case guiSetFileName: | |
321 if ( arg ) guiSetFilename( guiIntfStruct.Filename,arg ); | |
322 break; | |
5789 | 323 case guiSetAudioOnly: |
324 guiIntfStruct.AudioOnly=(int)arg; | |
7009 | 325 if ( (int)arg ) { guiIntfStruct.NoWindow=True; wsVisibleWindow( &appMPlayer.subWindow,wsHideWindow ); } |
5789 | 326 else wsVisibleWindow( &appMPlayer.subWindow,wsShowWindow ); |
327 break; | |
328 case guiReDrawSubWindow: | |
329 wsPostRedisplay( &appMPlayer.subWindow ); | |
330 break; | |
331 case guiSetShVideo: | |
332 { | |
5986 | 333 if ( !appMPlayer.subWindow.isFullScreen ) |
334 { | |
335 wsResizeWindow( &appMPlayer.subWindow,vo_dwidth,vo_dheight ); | |
336 wsMoveWindow( &appMPlayer.subWindow,True,appMPlayer.sub.x,appMPlayer.sub.y ); | |
337 } | |
5955
caac20b1ca79
fix xmga fs, resize to movie size and mouse auto hide + dga
pontscho
parents:
5945
diff
changeset
|
338 guiIntfStruct.MovieWidth=vo_dwidth; |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
339 guiIntfStruct.MovieHeight=vo_dheight; |
5789 | 340 } |
341 break; | |
5665 | 342 #ifdef USE_DVDREAD |
343 case guiSetDVD: | |
344 guiIntfStruct.DVD.titles=dvdp->vmg_file->tt_srpt->nr_of_srpts; | |
345 guiIntfStruct.DVD.chapters=dvdp->vmg_file->tt_srpt->title[dvd_title].nr_of_ptts; | |
346 guiIntfStruct.DVD.angles=dvdp->vmg_file->tt_srpt->title[dvd_title].nr_of_angles; | |
347 guiIntfStruct.DVD.nr_of_audio_channels=dvdp->nr_of_channels; | |
348 memcpy( guiIntfStruct.DVD.audio_streams,dvdp->audio_streams,sizeof( dvdp->audio_streams ) ); | |
349 guiIntfStruct.DVD.nr_of_subtitles=dvdp->nr_of_subtitles; | |
350 memcpy( guiIntfStruct.DVD.subtitles,dvdp->subtitles,sizeof( dvdp->subtitles ) ); | |
351 guiIntfStruct.DVD.current_title=dvd_title + 1; | |
352 guiIntfStruct.DVD.current_chapter=dvd_chapter + 1; | |
353 guiIntfStruct.DVD.current_angle=dvd_angle + 1; | |
354 guiIntfStruct.Track=dvd_title + 1; | |
355 break; | |
356 #endif | |
6280 | 357 case guiSetStream: |
358 guiIntfStruct.StreamType=stream->type; | |
359 switch( stream->type ) | |
360 { | |
7150 | 361 #ifdef USE_DVDREAD |
6280 | 362 case STREAMTYPE_DVD: |
363 guiGetEvent( guiSetDVD,(char *)stream->priv ); | |
364 break; | |
7150 | 365 #endif |
6280 | 366 #ifdef HAVE_VCD |
367 case STREAMTYPE_VCD: | |
368 { | |
369 int i; | |
370 for ( i=1;i < 100;i++ ) | |
371 if ( vcd_seek_to_track( stream->fd,i ) < 0 ) break; | |
372 vcd_seek_to_track( stream->fd,vcd_track ); | |
373 guiIntfStruct.VCDTracks=--i; | |
374 mp_msg( MSGT_GPLAYER,MSGL_INFO,"[interface] vcd tracks: %d\n",guiIntfStruct.VCDTracks ); | |
375 guiIntfStruct.Track=vcd_track; | |
376 break; | |
377 } | |
378 #endif | |
7150 | 379 default: break; |
6280 | 380 } |
381 break; | |
4858 | 382 case guiIEvent: |
383 printf( "cmd: %d\n",(int)arg ); | |
384 switch( (int)arg ) | |
385 { | |
386 case MP_CMD_QUIT: | |
387 mplEventHandling( evExit,0 ); | |
388 break; | |
389 case MP_CMD_VO_FULLSCREEN: | |
390 mplEventHandling( evFullScreen,0 ); | |
391 break; | |
392 default: | |
393 mplEventHandling( guiCMDArray[ (int)arg - MP_CMD_GUI_EVENTS - 1 ],0 ); | |
394 } | |
395 break; | |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
396 case guiReDraw: |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
397 mplEventHandling( evRedraw,0 ); |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
398 break; |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
399 case guiSetVolume: |
6903 | 400 if ( audio_out ) |
401 { | |
402 float l,r; | |
403 mixer_getvolume( &l,&r ); | |
404 guiIntfStruct.Volume=(r>l?r:l); | |
405 if ( r != l ) guiIntfStruct.Balance=( ( r - l ) + 100 ) * 0.5f; | |
406 else guiIntfStruct.Balance=50.0f; | |
407 btnModify( evSetVolume,guiIntfStruct.Volume ); | |
408 btnModify( evSetBalance,guiIntfStruct.Balance ); | |
409 } | |
410 break; | |
7009 | 411 case guiSetFileFormat: |
412 guiIntfStruct.FileFormat=(int)arg; | |
413 break; | |
6903 | 414 case guiSetValues: |
6912 | 415 // -- video |
416 if ( arg ) | |
417 { | |
7150 | 418 tmp_sh_video_t * sh = (tmp_sh_video_t *)arg; |
419 guiIntfStruct.FPS=sh->fps; | |
6912 | 420 if ( vo_gamma_brightness == 1000 ) |
421 { vo_gamma_brightness=0; get_video_colors( (void *)arg,"brightness",&vo_gamma_brightness ); } | |
422 if ( vo_gamma_contrast == 1000 ) | |
423 { vo_gamma_contrast=0; get_video_colors( (void *)arg,"contrast",&vo_gamma_contrast ); } | |
424 if ( vo_gamma_hue == 1000 ) | |
425 { vo_gamma_hue=0; get_video_colors( (void *)arg,"hue",&vo_gamma_hue ); } | |
426 if ( vo_gamma_saturation == 1000 ) | |
427 { vo_gamma_saturation=0; get_video_colors( (void *)arg,"saturation",&vo_gamma_saturation ); } | |
428 } | |
7009 | 429 |
430 if ( guiIntfStruct.NoWindow ) wsVisibleWindow( &appMPlayer.subWindow,wsHideWindow ); | |
431 | |
6794 | 432 // -- audio |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
433 if ( audio_out ) |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
434 { |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
435 float l,r; |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
436 mixer_getvolume( &l,&r ); |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
437 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
|
438 if ( r != l ) guiIntfStruct.Balance=( ( r - l ) + 100 ) * 0.5f; |
6627 | 439 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
|
440 btnModify( evSetVolume,guiIntfStruct.Volume ); |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
441 btnModify( evSetBalance,guiIntfStruct.Balance ); |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
442 } |
6627 | 443 |
6794 | 444 if ( gtkAONoSound ) { if ( !muted ) mixer_mute(); } |
445 else if ( muted ) mixer_mute(); | |
446 | |
6627 | 447 if ( gtkEnableAudioEqualizer ) |
448 { | |
449 equalizer_t eq; | |
450 int i,j; | |
451 for ( i=0;i<6;i++ ) | |
452 for ( j=0;j<10;j++ ) | |
453 { | |
454 eq.channel=i; eq.band=j; eq.gain=gtkEquChannels[i][j]; | |
455 gtkSet( gtkSetEqualizer,0,&eq ); | |
456 } | |
457 } | |
6794 | 458 // -- subtitle |
7009 | 459 #ifdef HAVE_DXR3 |
7019 | 460 if ( !gstrcmp( video_driver,"dxr3" ) && guiIntfStruct.FileFormat != DEMUXER_TYPE_MPEG_PS && !gtkVopLAVC && !gtkVopFAME ) |
7009 | 461 { |
462 gtkMessageBox( GTK_MB_FATAL,MSGTR_NEEDLAVCFAME ); | |
463 guiIntfStruct.Playing=0; | |
464 return True; | |
465 } | |
466 #endif | |
6627 | 467 break; |
468 case guiSetDefaults: | |
6857 | 469 if ( filename && !guiIntfStruct.Filename ) |
6794 | 470 { |
471 gtkSet( gtkDelPl,0,NULL ); guiIntfStruct.StreamType=STREAMTYPE_FILE; | |
472 guiSetFilename( guiIntfStruct.Filename,filename ); | |
473 } | |
474 | |
475 guiIntfStruct.DiskChanged=0; | |
476 | |
7009 | 477 // --- video opts |
7019 | 478 |
479 if ( !video_driver ) | |
6794 | 480 { |
6797
06d29dbdf20d
upsz, sorry, i forgott this :) (skin name saving:)
pontscho
parents:
6794
diff
changeset
|
481 int i = 0; |
6903 | 482 while ( video_out_drivers[i++] ) |
483 if ( video_out_drivers[i - 1]->control( VOCTRL_GUISUPPORT,NULL ) == VO_TRUE ) | |
484 { | |
485 const vo_info_t *info = video_out_drivers[i - 1]->get_info(); | |
7019 | 486 video_driver=gstrdup( (char *)info->short_name ); |
6903 | 487 break; |
488 } | |
6794 | 489 } |
490 | |
7019 | 491 if ( !video_driver ) { gtkMessageBox( GTK_MB_FATAL,MSGTR_IDFGCVD ); exit_player( "gui init" ); } |
7009 | 492 |
493 { | |
494 int i = 0; | |
495 guiIntfStruct.NoWindow=False; | |
496 while ( video_out_drivers[i++] ) | |
497 if ( video_out_drivers[i - 1]->control( VOCTRL_GUISUPPORT,NULL ) == VO_TRUE ) | |
6794 | 498 { |
7009 | 499 const vo_info_t *info = video_out_drivers[i - 1]->get_info(); |
7019 | 500 if ( ( !gstrcmp( video_driver,(char *)info->short_name ) )&&( video_out_drivers[i - 1]->control( VOCTRL_GUI_NOWINDOW,NULL ) == VO_TRUE ) ) |
7009 | 501 { guiIntfStruct.NoWindow=True; break; } |
6794 | 502 } |
7009 | 503 } |
504 | |
505 #ifdef HAVE_DXR3 | |
506 remove_vop( "lavc" ); | |
507 remove_vop( "fame" ); | |
7019 | 508 if ( !gstrcmp( video_driver,"dxr3" ) ) |
7009 | 509 { |
510 if ( ( guiIntfStruct.StreamType != STREAMTYPE_DVD)&&( guiIntfStruct.StreamType != STREAMTYPE_VCD ) ) | |
511 { | |
512 if ( gtkVopLAVC ) add_vop( "lavc" ); | |
513 if ( gtkVopFAME ) add_vop( "fame" ); | |
514 } | |
515 } | |
516 #endif | |
517 // --- | |
7019 | 518 if ( gtkVopPP ) add_vop( "pp" ); |
519 else remove_vop( "pp" ); | |
6794 | 520 |
521 // --- audio opts | |
522 audio_delay=gtkAODelay; | |
523 if ( ao_plugin_cfg.plugin_list ) { free( ao_plugin_cfg.plugin_list ); ao_plugin_cfg.plugin_list=NULL; } | |
6840 | 524 if ( gtkAONorm ) gset( &ao_plugin_cfg.plugin_list,"volnorm" ); |
6794 | 525 if ( gtkEnableAudioEqualizer ) gset( &ao_plugin_cfg.plugin_list,"eq" ); |
526 if ( gtkAOExtraStereo ) | |
527 { | |
528 gset( &ao_plugin_cfg.plugin_list,"extrastereo" ); | |
529 ao_plugin_cfg.pl_extrastereo_mul=gtkAOExtraStereoMul; | |
530 } | |
531 mixer_device=gtkAOOSSMixer; | |
7019 | 532 if ( !gstrncmp( audio_driver,"oss",3 ) && gtkAOOSSDevice ) |
6794 | 533 { |
7019 | 534 char * tmp = calloc( 1,strlen( gtkAOOSSDevice ) + 5 ); |
535 sprintf( tmp,"oss:%s",gtkAOOSSDevice ); | |
536 gfree( (void *)&audio_driver ); | |
6794 | 537 audio_driver=tmp; |
7019 | 538 } |
6794 | 539 |
540 // -- subtitle | |
541 #ifdef USE_SUB | |
542 sub_name=guiIntfStruct.Subtitlename; | |
543 stream_dump_type=0; | |
544 if ( gtkSubDumpMPSub ) stream_dump_type=4; | |
545 if ( gtkSubDumpSrt ) stream_dump_type=6; | |
546 gtkSubDumpMPSub=gtkSubDumpSrt=0; | |
6627 | 547 #endif |
6794 | 548 #if defined( USE_OSD ) || defined( USE_SUB ) |
549 guiLoadFont(); | |
6627 | 550 #endif |
551 | |
6794 | 552 // --- misc |
6627 | 553 if ( guiIntfStruct.AudioFile ) audio_stream=guiIntfStruct.AudioFile; |
554 else if ( guiIntfStruct.FilenameChanged ) audio_stream=NULL; | |
555 | |
556 break; | |
4798 | 557 } |
7009 | 558 return False; |
4798 | 559 } |
560 | |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
561 extern unsigned int GetTimerMS( void ); |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
562 extern int mplTimer; |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
563 |
4798 | 564 void guiEventHandling( void ) |
565 { | |
7009 | 566 if ( !guiIntfStruct.Playing || guiIntfStruct.NoWindow ) wsHandleEvents(); |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
567 gtkEventHandling(); |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6280
diff
changeset
|
568 mplTimer=GetTimerMS() / 20; |
4798 | 569 } |
6627 | 570 |
571 // --- | |
572 | |
573 float gtkEquChannels[6][10]; | |
574 | |
6713 | 575 plItem * plCurrent = NULL; |
576 plItem * plList = NULL; | |
577 plItem * plLastPlayed = NULL; | |
578 | |
7092
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
579 URLItem *URLList = NULL; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
580 |
6713 | 581 #if defined( MP_DEBUG ) && 0 |
582 void list( void ) | |
6627 | 583 { |
6713 | 584 plItem * next = plList; |
585 printf( "--- list ---\n" ); | |
586 while( next || next->next ) | |
587 { | |
588 printf( "item: %s/%s\n",next->path,next->name ); | |
589 if ( next->next ) next=next->next; else break; | |
590 } | |
591 printf( "--- end of list ---\n" ); | |
592 } | |
593 #else | |
594 #define list(); | |
595 #endif | |
596 | |
597 void * gtkSet( int cmd,float fparam, void * vparam ) | |
598 { | |
6794 | 599 mp_cmd_t * mp_cmd; |
6627 | 600 equalizer_t * eq = (equalizer_t *)vparam; |
6713 | 601 plItem * item = (plItem *)vparam; |
6627 | 602 |
7092
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
603 URLItem * url_item = (URLItem *)vparam; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
604 int is_added = True; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
605 |
6627 | 606 switch ( cmd ) |
607 { | |
6713 | 608 // --- handle playlist |
6755 | 609 case gtkAddPlItem: // add item to playlist |
6713 | 610 if ( plList ) |
611 { | |
612 plItem * next = plList; | |
613 while ( next->next ) { /*printf( "%s\n",next->name );*/ next=next->next; } | |
614 next->next=item; item->prev=next; | |
7092
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
615 } else { item->prev=item->next=NULL; plCurrent=plList=item; } |
6713 | 616 list(); |
617 return NULL; | |
618 case gtkGetNextPlItem: // get current item from playlist | |
619 if ( plCurrent ) | |
620 { | |
621 plCurrent=plCurrent->next; | |
622 if ( !plCurrent && plList ) | |
623 { | |
624 plItem * next = plList; | |
625 while ( next->next ) { if ( !next->next ) break; next=next->next; } | |
626 plCurrent=next; | |
627 } | |
628 return plCurrent; | |
629 } | |
630 return NULL; | |
631 case gtkGetPrevPlItem: | |
632 if ( plCurrent ) | |
633 { | |
634 plCurrent=plCurrent->prev; | |
635 if ( !plCurrent && plList ) plCurrent=plList; | |
636 return plCurrent; | |
637 } | |
6794 | 638 return NULL; |
6713 | 639 case gtkGetCurrPlItem: // get current item |
640 return plCurrent; | |
641 case gtkDelPl: // delete list | |
642 { | |
643 plItem * curr = plList; | |
644 plItem * next; | |
645 if ( !plList ) return NULL; | |
646 if ( !curr->next ) | |
647 { | |
648 if ( curr->path ) free( curr->path ); | |
649 if ( curr->name ) free( curr->name ); | |
650 free( curr ); | |
651 } | |
652 else | |
653 { | |
654 while ( curr->next ) | |
655 { | |
656 next=curr->next; | |
657 if ( curr->path ) free( curr->path ); | |
658 if ( curr->name ) free( curr->name ); | |
659 free( curr ); | |
660 curr=next; | |
661 } | |
662 } | |
663 plList=NULL; plCurrent=NULL; | |
664 } | |
665 return NULL; | |
7092
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
666 // ----- Handle url |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
667 case gtkAddURLItem: |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
668 if ( URLList ) |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
669 { |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
670 URLItem * next_url = URLList; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
671 is_added = False; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
672 while ( next_url->next ) |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
673 { |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
674 if ( !gstrcmp( next_url->url,url_item->url ) ) |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
675 { |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
676 is_added=True; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
677 break; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
678 } |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
679 next_url=next_url->next; |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
680 } |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
681 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
|
682 } else { url_item->next=NULL; URLList=url_item; } |
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7019
diff
changeset
|
683 return NULL; |
6794 | 684 // --- subtitle |
685 case gtkSetSubAuto: | |
7019 | 686 sub_auto=(int)fparam; |
6794 | 687 return NULL; |
688 case gtkSetSubDelay: | |
7019 | 689 sub_delay=fparam; |
6794 | 690 return NULL; |
691 case gtkSetSubFPS: | |
7019 | 692 sub_fps=(int)fparam; |
6794 | 693 return NULL; |
694 case gtkSetSubPos: | |
7019 | 695 sub_pos=(int)fparam; |
6794 | 696 return NULL; |
697 #if defined( USE_OSD ) || defined( USE_SUB ) | |
7139 | 698 #ifndef HAVE_FREETYPE |
6794 | 699 case gtkSetFontFactor: |
7019 | 700 font_factor=fparam; |
6794 | 701 guiLoadFont(); |
702 return NULL; | |
7139 | 703 #else |
704 case gtkSetFontOutLine: | |
705 subtitle_font_thickness=( 8.0f / 100.0f ) * fparam; | |
706 guiLoadFont(); | |
707 return NULL; | |
708 case gtkSetFontBlur: | |
709 subtitle_font_radius=( 8.0f / 100.0f ) * fparam; | |
710 guiLoadFont(); | |
711 return NULL; | |
712 case gtkSetFontTextScale: | |
713 text_font_scale_factor=fparam; | |
714 guiLoadFont(); | |
715 return NULL; | |
716 case gtkSetFontOSDScale: | |
717 osd_font_scale_factor=fparam; | |
718 guiLoadFont(); | |
719 return NULL; | |
720 case gtkSetFontEncoding: | |
721 if ( subtitle_font_encoding ) free( subtitle_font_encoding ); | |
722 subtitle_font_encoding=gstrdup( (char *)vparam ); | |
723 guiLoadFont(); | |
724 return NULL; | |
725 case gtkSetFontAutoScale: | |
726 subtitle_autoscale=(int)fparam; | |
727 guiLoadFont(); | |
728 return NULL; | |
729 #endif | |
6794 | 730 #endif |
731 // --- misc | |
732 case gtkClearStruct: | |
7009 | 733 if ( (unsigned int)vparam & guiFilenames ) |
6794 | 734 { |
735 gfree( (void **)&guiIntfStruct.Filename ); | |
736 gfree( (void **)&guiIntfStruct.Subtitlename ); | |
737 gfree( (void **)&guiIntfStruct.AudioFile ); | |
7009 | 738 gtkSet( gtkDelPl,0,NULL ); |
6794 | 739 } |
740 #ifdef USE_DVDREAD | |
7009 | 741 if ( (unsigned int)vparam & guiDVD ) memset( &guiIntfStruct.DVD,0,sizeof( guiDVDStruct ) ); |
6794 | 742 #endif |
743 #ifdef HAVE_VCD | |
7009 | 744 if ( (unsigned int)vparam & guiVCD ) guiIntfStruct.VCDTracks=0; |
6794 | 745 #endif |
746 return NULL; | |
747 case gtkSetExtraStereo: | |
748 gtkAOExtraStereoMul=fparam; | |
749 audio_plugin_extrastereo.control( AOCONTROL_PLUGIN_ES_SET,(int)>kAOExtraStereoMul ); | |
750 return NULL; | |
751 case gtkSetAudioDelay: | |
752 audio_delay=gtkAODelay=fparam; | |
753 return NULL; | |
754 case gtkSetPanscan: | |
755 mp_cmd=(mp_cmd_t *)calloc( 1,sizeof( *mp_cmd ) ); | |
756 mp_cmd->id=MP_CMD_PANSCAN; mp_cmd->name=strdup( "panscan" ); | |
757 mp_cmd->args[0].v.f=fparam; mp_cmd->args[1].v.i=1; | |
758 mp_input_queue_cmd( mp_cmd ); | |
759 return NULL; | |
760 case gtkSetAutoq: | |
7019 | 761 auto_quality=(int)fparam; |
6794 | 762 return NULL; |
6713 | 763 // --- set equalizers |
6627 | 764 case gtkSetContrast: |
6794 | 765 mp_cmd=(mp_cmd_t *)calloc( 1,sizeof( *mp_cmd ) ); |
6627 | 766 mp_cmd->id=MP_CMD_CONTRAST; mp_cmd->name=strdup( "contrast" ); |
767 break; | |
768 case gtkSetBrightness: | |
6794 | 769 mp_cmd=(mp_cmd_t *)calloc( 1,sizeof( *mp_cmd ) ); |
6627 | 770 mp_cmd->id=MP_CMD_BRIGHTNESS; mp_cmd->name=strdup( "brightness" ); |
771 break; | |
772 case gtkSetHue: | |
6794 | 773 mp_cmd=(mp_cmd_t *)calloc( 1,sizeof( *mp_cmd ) ); |
6627 | 774 mp_cmd->id=MP_CMD_HUE; mp_cmd->name=strdup( "hue" ); |
775 break; | |
776 case gtkSetSaturation: | |
6794 | 777 mp_cmd=(mp_cmd_t *)calloc( 1,sizeof( *mp_cmd ) ); |
6627 | 778 mp_cmd->id=MP_CMD_SATURATION; mp_cmd->name=strdup( "saturation" ); |
779 break; | |
780 case gtkSetEqualizer: | |
781 if ( eq ) | |
782 { | |
783 gtkEquChannels[eq->channel][eq->band]=eq->gain; | |
784 audio_plugin_eq.control( AOCONTROL_PLUGIN_EQ_SET_GAIN,(int)eq ); | |
785 } | |
786 else | |
787 { | |
788 int i,j; equalizer_t tmp; tmp.gain=0.0f; | |
789 memset( gtkEquChannels,0,sizeof( gtkEquChannels ) ); | |
790 for ( i=0;i<6;i++ ) | |
791 for ( j=0;j<10;j++ ) | |
792 { tmp.channel=i; tmp.band=j; audio_plugin_eq.control( AOCONTROL_PLUGIN_EQ_SET_GAIN,(int)&tmp ); } | |
793 } | |
6713 | 794 return NULL; |
6794 | 795 default: return NULL; |
6627 | 796 } |
797 mp_cmd->args[0].v.i=(int)fparam; | |
798 mp_cmd->args[1].v.i=1; | |
799 mp_input_queue_cmd( mp_cmd ); | |
6713 | 800 return NULL; |
6627 | 801 } |