Mercurial > mplayer.hg
annotate mplayer.h @ 23066:9fa58c749c03
include inttypes.h in the check for dvdnav
author | nicodvb |
---|---|
date | Sun, 22 Apr 2007 20:03:09 +0000 |
parents | b806ccbc6398 |
children | 2a66d95355f0 |
rev | line source |
---|---|
724 | 1 |
2 #ifndef __MPLAYER_MAIN | |
3 #define __MPLAYER_MAIN | |
4 | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
5 extern char* current_module; |
724 | 6 |
8933
bfe1b826cff1
add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents:
8717
diff
changeset
|
7 extern char * dvd_device; |
bfe1b826cff1
add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents:
8717
diff
changeset
|
8 extern char * cdrom_device; |
bfe1b826cff1
add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents:
8717
diff
changeset
|
9 |
7526 | 10 extern char ** audio_fm_list; |
11 extern char ** video_fm_list; | |
7582 | 12 extern char ** video_driver_list; |
13 extern char ** audio_driver_list; | |
6796 | 14 extern char * video_driver; |
15 extern char * audio_driver; | |
16 extern float audio_delay; | |
17 | |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6335
diff
changeset
|
18 extern int osd_level; |
18287
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
17566
diff
changeset
|
19 extern unsigned int osd_visible; |
6619
f554e7271587
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents:
6335
diff
changeset
|
20 |
6796 | 21 extern char * font_name; |
22 extern float font_factor; | |
7541 | 23 extern float movie_aspect; |
9055 | 24 extern float force_fps; |
6796 | 25 |
9870
09d630a4f991
support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents:
9746
diff
changeset
|
26 //extern char **sub_name; |
6796 | 27 extern float sub_delay; |
28 extern float sub_fps; | |
29 extern int sub_auto; | |
7019 | 30 extern int sub_pos; |
31 extern int sub_unicode; | |
9056 | 32 extern char * sub_cp; |
8717 | 33 extern int suboverlap_enabled; |
6796 | 34 |
6627 | 35 extern char * filename; |
36 | |
7526 | 37 extern int stream_cache_size; |
7019 | 38 extern int force_ni; |
39 extern int index_mode; | |
8311 | 40 extern int autosync; |
7559
b645204ea527
some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents:
7541
diff
changeset
|
41 |
b645204ea527
some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents:
7541
diff
changeset
|
42 // libmpcodecs: |
b645204ea527
some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents:
7541
diff
changeset
|
43 extern int fullscreen; |
b645204ea527
some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents:
7541
diff
changeset
|
44 extern int flip; |
b645204ea527
some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents:
7541
diff
changeset
|
45 |
7019 | 46 extern int frame_dropping; |
47 | |
48 extern int auto_quality; | |
49 | |
7821
1efdf16883a0
add and extended Gregory Kovriga's <gkovriga@techunix.technion.ac.il> patch
pontscho
parents:
7582
diff
changeset
|
50 extern int audio_id; |
1efdf16883a0
add and extended Gregory Kovriga's <gkovriga@techunix.technion.ac.il> patch
pontscho
parents:
7582
diff
changeset
|
51 extern int video_id; |
1efdf16883a0
add and extended Gregory Kovriga's <gkovriga@techunix.technion.ac.il> patch
pontscho
parents:
7582
diff
changeset
|
52 extern int dvdsub_id; |
8423 | 53 extern int vobsub_id; |
7821
1efdf16883a0
add and extended Gregory Kovriga's <gkovriga@techunix.technion.ac.il> patch
pontscho
parents:
7582
diff
changeset
|
54 |
19104
2ec2301183cd
marks several read-only string parameters which aren't modified inside the called function as const. Patch by Stefan Huehner, stefan AT huehner-org
reynaldo
parents:
18287
diff
changeset
|
55 extern void exit_player(const char* how); |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
9870
diff
changeset
|
56 extern void update_set_of_subtitles(void); |
5919 | 57 |
6335
e9bd97d5c5cc
warning & newline fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
arpi
parents:
6280
diff
changeset
|
58 #endif |