diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-12-03 21:59:46 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-12-03 21:59:46 +0000 |
commit | b85c260c5c874450294149576001a011e97a465c (patch) | |
tree | 00242daf8256688e84cfcc26117511d9618eee8e /include | |
parent | eb815a3ec844c500d85337abb114abe657727292 (diff) | |
download | xine-lib-b85c260c5c874450294149576001a011e97a465c.tar.gz xine-lib-b85c260c5c874450294149576001a011e97a465c.tar.bz2 |
elaborate some comments
CVS patchset: 3417
CVS date: 2002/12/03 21:59:46
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.in | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index 58f28d329..2e8abe96a 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.h.in,v 1.42 2002/12/01 15:18:13 mroi Exp $ + * $Id: xine.h.in,v 1.43 2002/12/03 21:59:46 mroi Exp $ * * public xine-lib (libxine) interface and documentation * @@ -303,13 +303,13 @@ struct xine_post_s { /* a NULL-terminated array of audio input ports this post plugin * provides; you can hand these to other post plugin's outputs or - * pass it to the initialization of a stream + * pass them to the initialization of streams */ xine_audio_port_t **audio_input; /* a NULL-terminated array of video input ports this post plugin * provides; you can hand these to other post plugin's outputs or - * pass it to the initialization of a stream + * pass them to the initialization of streams */ xine_video_port_t **video_input; @@ -414,9 +414,29 @@ void xine_post_dispose(xine_t *xine, xine_post_t *self); /* post plugin data types */ + +/* video port data + * input->data is a xine_video_port_t* + * output->data is a xine_video_port_t** + */ #define XINE_POST_DATA_VIDEO 0 + +/* audio port data + * input->data is a xine_audio_port_t* + * output->data is a xine_audio_port_t** + */ #define XINE_POST_DATA_AUDIO 1 + +/* integer data + * input->data is a int* + * output->data is a int* + */ #define XINE_POST_DATA_INT 3 + +/* double precision floating point data + * input->data is a double* + * output->data is a double* + */ #define XINE_POST_DATA_DOUBLE 4 |