diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2001-10-27 16:12:21 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2001-10-27 16:12:21 +0000 |
commit | 632d85bad131630c15c48e8216d4bcc016dfbb4e (patch) | |
tree | c8a21d0eafc2cc766a7e64216a231ef3aafed244 /include | |
parent | aef7985b9484bdb81ee2b1149747959aabb9ddb8 (diff) | |
download | xine-lib-632d85bad131630c15c48e8216d4bcc016dfbb4e.tar.gz xine-lib-632d85bad131630c15c48e8216d4bcc016dfbb4e.tar.bz2 |
- new dirty and cheap deinterlace method: we give half of the lines to xv
driver and let it scale for us
- xine_list_demux_plugins update
CVS patchset: 894
CVS date: 2001/10/27 16:12:21
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.tmpl.in | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/include/xine.h.tmpl.in b/include/xine.h.tmpl.in index 445a3ec4b..50c801d78 100644 --- a/include/xine.h.tmpl.in +++ b/include/xine.h.tmpl.in @@ -28,7 +28,7 @@ \endverbatim */ /* - * $Id: xine.h.tmpl.in,v 1.50 2001/10/22 17:10:20 guenter Exp $ + * $Id: xine.h.tmpl.in,v 1.51 2001/10/27 16:12:21 miguelfreitas Exp $ * */ @@ -267,17 +267,11 @@ int xine_check_version(int major, int minor, int sub); */ #define VO_PROP_COLORKEY 6 /** - * \def VO_PROP_SOFT_DEINTERLACE - * Software deinterlacing (BOB) property. - * \sa vo_driver_t - */ -#define VO_PROP_SOFT_DEINTERLACE 7 -/** * \def VO_NUM_PROPERTIES * Number of available properties property. * \sa vo_driver_t */ -#define VO_NUM_PROPERTIES 8 +#define VO_NUM_PROPERTIES 7 /** @} end of video_prop */ @@ -1279,6 +1273,17 @@ char **xine_get_autoplay_mrls (xine_t *self, char *plugin_id, int *num_mrls); /** @} end of visual_types */ /** + * \fn void xine_list_demux_plugins (config_values_t *config, char **identifiers, char **mimetypes) + * \brief list available demux plugins + * \param config current configuration ( #see config_file_init() ) + * \param identifiers pointer to a (char *) that will be allocated and filled with all demux identifiers + * \param mimetypes pointer to a (char *) that will be allocated and filled with all demux mimetypes + * \return none (strings are returned on *identifiers and *mimetypes). It is up to called to free these after use. + */ +void xine_list_demux_plugins (config_values_t *config, + char **identifiers, char **mimetypes); + +/** * \fn char **xine_list_video_output_plugins (int visual_type) * \brief list available video output plugins * \param visual_type #see @ref visual_types |