Mercurial > mplayer.hg
annotate mplayer.h @ 9027:e59cda3414b6
conformation with api
author | alex |
---|---|
date | Sun, 19 Jan 2003 16:52:00 +0000 |
parents | bfe1b826cff1 |
children | 4a42c0604ce1 |
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; |
6280 | 10 extern int vcd_track; |
724 | 11 |
8933
bfe1b826cff1
add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents:
8717
diff
changeset
|
12 extern char * dvd_device; |
bfe1b826cff1
add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents:
8717
diff
changeset
|
13 extern char * cdrom_device; |
bfe1b826cff1
add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents:
8717
diff
changeset
|
14 |
7526 | 15 extern char ** audio_fm_list; |
16 extern char ** video_fm_list; | |
7582 | 17 extern char ** video_driver_list; |
18 extern char ** audio_driver_list; | |
6796 | 19 extern char * video_driver; |
20 extern char * audio_driver; | |
21 extern float audio_delay; | |
22 | |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6335
diff
changeset
|
23 extern int osd_level; |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6335
diff
changeset
|
24 extern int osd_visible; |
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6335
diff
changeset
|
25 |
6796 | 26 extern char * font_name; |
27 extern float font_factor; | |
7541 | 28 extern float movie_aspect; |
6796 | 29 |
6627 | 30 extern char * sub_name; |
6796 | 31 extern float sub_delay; |
32 extern float sub_fps; | |
33 extern int sub_auto; | |
7019 | 34 extern int sub_pos; |
35 extern int sub_unicode; | |
7150 | 36 extern subtitle* subtitles; |
37 extern subtitle* vo_sub; | |
8717 | 38 extern int suboverlap_enabled; |
6796 | 39 |
6627 | 40 extern char * filename; |
41 | |
7526 | 42 extern int stream_cache_size; |
7019 | 43 extern int force_ni; |
44 extern int index_mode; | |
8311 | 45 extern int autosync; |
7559
b645204ea527
some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents:
7541
diff
changeset
|
46 |
b645204ea527
some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents:
7541
diff
changeset
|
47 // libmpcodecs: |
b645204ea527
some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents:
7541
diff
changeset
|
48 extern int fullscreen; |
b645204ea527
some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents:
7541
diff
changeset
|
49 extern int flip; |
b645204ea527
some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents:
7541
diff
changeset
|
50 |
7019 | 51 extern int frame_dropping; |
52 | |
53 extern int auto_quality; | |
54 | |
7821
1efdf16883a0
add and extended Gregory Kovriga's <gkovriga@techunix.technion.ac.il> patch
pontscho
parents:
7582
diff
changeset
|
55 extern int audio_id; |
1efdf16883a0
add and extended Gregory Kovriga's <gkovriga@techunix.technion.ac.il> patch
pontscho
parents:
7582
diff
changeset
|
56 extern int video_id; |
1efdf16883a0
add and extended Gregory Kovriga's <gkovriga@techunix.technion.ac.il> patch
pontscho
parents:
7582
diff
changeset
|
57 extern int dvdsub_id; |
8423 | 58 extern int vobsub_id; |
7821
1efdf16883a0
add and extended Gregory Kovriga's <gkovriga@techunix.technion.ac.il> patch
pontscho
parents:
7582
diff
changeset
|
59 |
5919 | 60 extern void exit_player(char* how); |
61 | |
6335
e9bd97d5c5cc
warning & newline fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
arpi
parents:
6280
diff
changeset
|
62 #endif |