annotate mplayer.h @ 13394:455a5056801f

New generic 'portable anymap' video output driver. It supports portable pixmaps and graymaps in both raw and ASCII mode. Besides PPM and PGM, it can also output PGMYUV files which are PGM files with the U and V plane appended to the bottom of the Y image (bottom left and bottom right). All files can be written to the current directory, to a specified output directory or to multiple subdirectories if the filesystem can't handle the amount of files in one directory anymore. Note: This driver is not yet activated and will not be compiled and linked to libvo. A separate patch will take care of that. This is just for adding the file to the repository.
author ivo
date Mon, 20 Sep 2004 00:54:57 +0000
parents 09d630a4f991
children f580a7755ac5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
724
pontscho
parents:
diff changeset
1
pontscho
parents:
diff changeset
2 #ifndef __MPLAYER_MAIN
pontscho
parents:
diff changeset
3 #define __MPLAYER_MAIN
pontscho
parents:
diff changeset
4
7150
b212f74e14ec - add play time subtitle change support
pontscho
parents: 7019
diff changeset
5 #include "libvo/sub.h"
b212f74e14ec - add play time subtitle change support
pontscho
parents: 7019
diff changeset
6 #include "subreader.h"
b212f74e14ec - add play time subtitle change support
pontscho
parents: 7019
diff changeset
7
4798
c39affa2b376 new interface ? :)
pontscho
parents: 1006
diff changeset
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;
724
pontscho
parents:
diff changeset
10
8933
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8717
diff changeset
11 extern char * dvd_device;
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8717
diff changeset
12 extern char * cdrom_device;
bfe1b826cff1 add DVD and CDRom device entry's, and fix two 10l bug
pontscho
parents: 8717
diff changeset
13
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7186
diff changeset
14 extern char ** audio_fm_list;
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7186
diff changeset
15 extern char ** video_fm_list;
7582
4a233f3b09a7 add [video||audio]_driver_list
pontscho
parents: 7559
diff changeset
16 extern char ** video_driver_list;
4a233f3b09a7 add [video||audio]_driver_list
pontscho
parents: 7559
diff changeset
17 extern char ** audio_driver_list;
6796
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
18 extern char * video_driver;
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
19 extern char * audio_driver;
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
20 extern float audio_delay;
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
21
6619
f554e7271587 fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents: 6335
diff changeset
22 extern int osd_level;
f554e7271587 fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents: 6335
diff changeset
23 extern int osd_visible;
f554e7271587 fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents: 6335
diff changeset
24
6796
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
25 extern char * font_name;
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
26 extern float font_factor;
7541
f51e76c3882e add aspect changing support
pontscho
parents: 7529
diff changeset
27 extern float movie_aspect;
9055
4a42c0604ce1 - rewrite sub_fps
pontscho
parents: 8933
diff changeset
28 extern float force_fps;
6796
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
29
9870
09d630a4f991 support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents: 9746
diff changeset
30 //extern char **sub_name;
6796
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
31 extern float sub_delay;
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
32 extern float sub_fps;
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
33 extern int sub_auto;
7019
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 6796
diff changeset
34 extern int sub_pos;
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 6796
diff changeset
35 extern int sub_unicode;
9056
3086611e8213 - add subcp
pontscho
parents: 9055
diff changeset
36 extern char * sub_cp;
9870
09d630a4f991 support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents: 9746
diff changeset
37 extern sub_data* subdata; //currently used subtitles
7150
b212f74e14ec - add play time subtitle change support
pontscho
parents: 7019
diff changeset
38 extern subtitle* vo_sub;
8717
2df4e9d9922d add overlapping to preferences
pontscho
parents: 8423
diff changeset
39 extern int suboverlap_enabled;
6796
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
40
6627
fd3ac41ee1a1 add equalizer support and fix some small bug...
pontscho
parents: 6619
diff changeset
41 extern char * filename;
fd3ac41ee1a1 add equalizer support and fix some small bug...
pontscho
parents: 6619
diff changeset
42
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7186
diff changeset
43 extern int stream_cache_size;
7019
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 6796
diff changeset
44 extern int force_ni;
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 6796
diff changeset
45 extern int index_mode;
8311
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 7821
diff changeset
46 extern int autosync;
7559
b645204ea527 some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents: 7541
diff changeset
47
b645204ea527 some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents: 7541
diff changeset
48 // libmpcodecs:
b645204ea527 some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents: 7541
diff changeset
49 extern int fullscreen;
b645204ea527 some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents: 7541
diff changeset
50 extern int flip;
b645204ea527 some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents: 7541
diff changeset
51
7019
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 6796
diff changeset
52 extern int frame_dropping;
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 6796
diff changeset
53
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 6796
diff changeset
54 extern int auto_quality;
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 6796
diff changeset
55
7821
1efdf16883a0 add and extended Gregory Kovriga's <gkovriga@techunix.technion.ac.il> patch
pontscho
parents: 7582
diff changeset
56 extern int audio_id;
1efdf16883a0 add and extended Gregory Kovriga's <gkovriga@techunix.technion.ac.il> patch
pontscho
parents: 7582
diff changeset
57 extern int video_id;
1efdf16883a0 add and extended Gregory Kovriga's <gkovriga@techunix.technion.ac.il> patch
pontscho
parents: 7582
diff changeset
58 extern int dvdsub_id;
8423
c6a1a5b6ba25 - fix three submenu bug
pontscho
parents: 8311
diff changeset
59 extern int vobsub_id;
7821
1efdf16883a0 add and extended Gregory Kovriga's <gkovriga@techunix.technion.ac.il> patch
pontscho
parents: 7582
diff changeset
60
5919
60cf2bca993f some bug fix
pontscho
parents: 4981
diff changeset
61 extern void exit_player(char* how);
9870
09d630a4f991 support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents: 9746
diff changeset
62 extern void update_set_of_subtitles();
5919
60cf2bca993f some bug fix
pontscho
parents: 4981
diff changeset
63
6335
e9bd97d5c5cc warning & newline fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
arpi
parents: 6280
diff changeset
64 #endif