Mercurial > mplayer.hg
annotate Gui/cfg.h @ 16884:0168bf6042d6
Fix two (loosely) related bugs: massive A-V desync with -audiofile (bugzilla
bug #375, sh_audio->delay must only be set when seeking, not at every packet)
and not switching to the next file when seeking hits eof.
author | reimar |
---|---|
date | Tue, 01 Nov 2005 16:12:53 +0000 |
parents | e2b2ab284a9a |
children | 945fa0eb37c0 |
rev | line source |
---|---|
6770 | 1 |
2 #ifndef __CFG_H | |
3 #define __CFG_H | |
4 | |
5 extern int gtkEnableAudioEqualizer; | |
6 | |
7009 | 7 extern int gtkVopPP; |
8 extern int gtkVopLAVC; | |
9 extern int gtkVopFAME; | |
10 | |
6770 | 11 extern int gtkAONorm; |
12 extern int gtkAOFakeSurround; | |
13 extern int gtkAOExtraStereo; | |
14 extern float gtkAOExtraStereoMul; | |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8311
diff
changeset
|
15 #ifdef USE_OSS_AUDIO |
6770 | 16 extern char * gtkAOOSSMixer; |
12918 | 17 extern char * gtkAOOSSMixerChannel; |
6770 | 18 extern char * gtkAOOSSDevice; |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8311
diff
changeset
|
19 #endif |
12918 | 20 #if defined(HAVE_ALSA9) || defined (HAVE_ALSA1X) |
21 extern char * gtkAOALSAMixer; | |
22 extern char * gtkAOALSAMixerChannel; | |
23 extern char * gtkAOALSADevice; | |
24 #endif | |
8714
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8600
diff
changeset
|
25 #ifdef HAVE_SDL |
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8600
diff
changeset
|
26 extern char * gtkAOSDLDriver; |
a88f827ec563
SDL Audio configure window from Filip Kalinski <filon@pld.org.pl>
pontscho
parents:
8600
diff
changeset
|
27 #endif |
14686
e2b2ab284a9a
ESD configuration dialog and software volume control option for Gui
reimar
parents:
12918
diff
changeset
|
28 #ifdef USE_ESD |
e2b2ab284a9a
ESD configuration dialog and software volume control option for Gui
reimar
parents:
12918
diff
changeset
|
29 extern char * gtkAOESDDevice; |
e2b2ab284a9a
ESD configuration dialog and software volume control option for Gui
reimar
parents:
12918
diff
changeset
|
30 #endif |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8311
diff
changeset
|
31 #ifdef HAVE_DXR3 |
7706 | 32 extern char * gtkDXR3Device; |
8600
54eac4cf587c
Lots of functions and variables specific to OSS audio are used without
arpi
parents:
8311
diff
changeset
|
33 #endif |
6770 | 34 |
8284 | 35 extern int gtkCacheOn; |
36 extern int gtkCacheSize; | |
37 | |
8311 | 38 extern int gtkAutoSyncOn; |
39 extern int gtkAutoSync; | |
40 | |
6770 | 41 extern int gtkSubDumpMPSub; |
42 extern int gtkSubDumpSrt; | |
43 | |
44 extern char * gtkEquChannel1; | |
45 extern char * gtkEquChannel2; | |
46 extern char * gtkEquChannel3; | |
47 extern char * gtkEquChannel4; | |
48 extern char * gtkEquChannel5; | |
49 extern char * gtkEquChannel6; | |
7538 | 50 extern int gtkLoadFullscreen; |
9202 | 51 extern int gtkShowVideoWindow; |
8973 | 52 extern int gtkEnablePlayBar; |
6770 | 53 |
9625 | 54 extern int gui_save_pos; |
55 extern int gui_main_pos_x; | |
56 extern int gui_main_pos_y; | |
57 extern int gui_sub_pos_x; | |
58 extern int gui_sub_pos_y; | |
59 | |
6770 | 60 extern int cfg_read( void ); |
61 extern int cfg_write( void ); | |
62 | |
63 #endif |