Mercurial > mplayer.hg
annotate mplayer.h @ 6991:bd242a56b563
remove unused varibles patch by (Eric Sesterhenn <SnakeByte at gmx dot de>)
author | michael |
---|---|
date | Tue, 13 Aug 2002 19:18:20 +0000 |
parents | 9c828335b2d0 |
children | e37a67d5e117 |
rev | line source |
---|---|
724 | 1 |
2 #ifndef __MPLAYER_MAIN | |
3 #define __MPLAYER_MAIN | |
4 | |
4798 | 5 extern int use_gui; |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
6 extern char* current_module; |
4981 | 7 extern int fullscreen; |
6280 | 8 extern int vcd_track; |
724 | 9 |
6796 | 10 extern int video_family; |
11 extern char * video_driver; | |
12 extern char * audio_driver; | |
13 extern int has_audio; | |
14 extern float audio_delay; | |
15 | |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6335
diff
changeset
|
16 extern int osd_level; |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6335
diff
changeset
|
17 extern int osd_visible; |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6335
diff
changeset
|
18 |
6796 | 19 extern char * font_name; |
20 extern float font_factor; | |
21 | |
6627 | 22 extern char * sub_name; |
6796 | 23 extern float sub_delay; |
24 extern float sub_fps; | |
25 extern int sub_auto; | |
26 | |
6627 | 27 extern char * filename; |
28 | |
5919 | 29 extern void exit_player(char* how); |
30 | |
6335
e9bd97d5c5cc
warning & newline fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
arpi
parents:
6280
diff
changeset
|
31 #endif |