diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-10-14 23:19:59 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-10-14 23:19:59 +0000 |
commit | 15d50842081823d2a124f0939cb8595c379c746f (patch) | |
tree | 845e27d65c4571468a9f6d65db4d8a4d47ab61fd /doc/man/en/man3/xine.h.3 | |
parent | 482d6973c539f1c571e3bfc8334cccacf7c9678a (diff) | |
download | xine-lib-15d50842081823d2a124f0939cb8595c379c746f.tar.gz xine-lib-15d50842081823d2a124f0939cb8595c379c746f.tar.bz2 |
Update xine.h doxygen comments. Use constants for aspect ratio in
vo drivers.
CVS patchset: 812
CVS date: 2001/10/14 23:19:59
Diffstat (limited to 'doc/man/en/man3/xine.h.3')
-rw-r--r-- | doc/man/en/man3/xine.h.3 | 33 |
1 files changed, 29 insertions, 4 deletions
diff --git a/doc/man/en/man3/xine.h.3 b/doc/man/en/man3/xine.h.3 index ebe738f2e..8ccf4642a 100644 --- a/doc/man/en/man3/xine.h.3 +++ b/doc/man/en/man3/xine.h.3 @@ -1,4 +1,4 @@ -.TH "xine.h" 3 "5 Oct 2001" "XINE, A Free Video Player Project - API reference" \" -*- nroff -*- +.TH "xine.h" 3 "15 Oct 2001" "XINE, A Free Video Player Project - API reference" \" -*- nroff -*- .ad l .nh .SH NAME @@ -29,10 +29,10 @@ xine.h \- .RI "#define \fBXINE_BUILD_CC\fP 'gcc version 2.95.3 20010315 (release)'" .br .ti -1c -.RI "#define \fBXINE_BUILD_OS\fP 'Linux 2.4.9-ac7 i686'" +.RI "#define \fBXINE_BUILD_OS\fP 'Linux 2.4.9 i686'" .br .ti -1c -.RI "#define \fBXINE_BUILD_DATE\fP 'Fri 05 Oct 2001 14:06:23'" +.RI "#define \fBXINE_BUILD_DATE\fP 'Mon 15 Oct 2001 00:22:19'" .br .ti -1c .RI "#define \fBXINE_STOP\fP 0" @@ -50,7 +50,7 @@ xine.h \- .RI "#define \fBXINE_MINOR_VERSION\fP 9" .br .ti -1c -.RI "#define \fBXINE_SUB_VERSION\fP 1" +.RI "#define \fBXINE_SUB_VERSION\fP 2" .br .ti -1c .RI "#define \fBVO_CAP_HUE\fP 0x00000010" @@ -259,6 +259,27 @@ xine.h \- .ti -1c .RI "#define \fBVISUAL_TYPE_GTK\fP 4" .br +.ti -1c +.RI "#define \fBXINE_IMGFMT_YV12\fP 0x32315659" +.br +.ti -1c +.RI "#define \fBXINE_IMGFMT_YUY2\fP (('2'<<24)|('Y'<<16)|('U'<<8)|'Y')" +.br +.ti -1c +.RI "#define \fBXINE_ASPECT_RATIO_SQUARE\fP 1" +.br +.ti -1c +.RI "#define \fBXINE_ASPECT_RATIO_4_3\fP 2" +.br +.ti -1c +.RI "#define \fBXINE_ASPECT_RATIO_ANAMORPHIC\fP 3" +.br +.ti -1c +.RI "#define \fBXINE_ASPECT_RATIO_211_1\fP 4" +.br +.ti -1c +.RI "#define \fBXINE_ASPECT_RATIO_DONT_TOUCH\fP 42" +.br .in -1c .SS "Typedefs" @@ -451,6 +472,10 @@ xine.h \- .RI "void \fBxine_send_event\fP (\fBxine_t\fP *self, \fBevent_t\fP *event, void *data)" .br .RI "\fIsends an event to all listeners.\fP" +.ti -1c +.RI "int \fBxine_get_current_frame\fP (\fBxine_t\fP *self, int *width, int *height, int *ratio_code, int *format, uint8_t **y, uint8_t **u, uint8_t **v)" +.br +.RI "\fISnapshot function.\fP" .in -1c .SH "DETAILED DESCRIPTION" .PP |