Mercurial > mplayer.hg
annotate mplayer.h @ 7529:c276bfb414fb
removed obsolete/unused audio|video_fm|codec, has_audio|video
author | arpi |
---|---|
date | Sat, 28 Sep 2002 18:45:47 +0000 |
parents | e3ca9e707857 |
children | f51e76c3882e |
rev | line source |
---|---|
724 | 1 |
2 #ifndef __MPLAYER_MAIN | |
3 #define __MPLAYER_MAIN | |
4 | |
7150 | 5 #include "libvo/sub.h" |
6 #include "subreader.h" | |
7 | |
4798 | 8 extern int use_gui; |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
9 extern char* current_module; |
4981 | 10 extern int fullscreen; |
6280 | 11 extern int vcd_track; |
724 | 12 |
7526 | 13 extern char ** audio_fm_list; |
14 extern char ** video_fm_list; | |
6796 | 15 extern char * video_driver; |
16 extern char * audio_driver; | |
17 extern float audio_delay; | |
18 | |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6335
diff
changeset
|
19 extern int osd_level; |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6335
diff
changeset
|
20 extern int osd_visible; |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6335
diff
changeset
|
21 |
6796 | 22 extern char * font_name; |
23 extern float font_factor; | |
24 | |
6627 | 25 extern char * sub_name; |
6796 | 26 extern float sub_delay; |
27 extern float sub_fps; | |
28 extern int sub_auto; | |
7019 | 29 extern int sub_pos; |
30 extern int sub_unicode; | |
7150 | 31 extern subtitle* subtitles; |
32 extern subtitle* vo_sub; | |
6796 | 33 |
6627 | 34 extern char * filename; |
35 | |
7526 | 36 extern int stream_cache_size; |
7019 | 37 extern int flip; |
38 extern int force_ni; | |
39 extern int index_mode; | |
40 extern int frame_dropping; | |
41 | |
42 extern int auto_quality; | |
43 | |
5919 | 44 extern void exit_player(char* how); |
45 | |
6335
e9bd97d5c5cc
warning & newline fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
arpi
parents:
6280
diff
changeset
|
46 #endif |