Mercurial > mplayer.hg
changeset 23902:29f612207c95
More doxygen comments
author | reimar |
---|---|
date | Sun, 29 Jul 2007 17:57:12 +0000 |
parents | 657236b9eacb |
children | 037737866f6a |
files | stream/stream_dvdnav.c |
diffstat | 1 files changed, 10 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/stream/stream_dvdnav.c Sun Jul 29 17:56:47 2007 +0000 +++ b/stream/stream_dvdnav.c Sun Jul 29 17:57:12 2007 +0000 @@ -627,12 +627,22 @@ return n; } +/** + * \brief mp_dvdnav_get_spu_clut() returns the spu clut + * \param stream: - stream pointer + * \return spu clut pointer + */ unsigned int *mp_dvdnav_get_spu_clut(stream_t *stream) { dvdnav_priv_t *priv=(dvdnav_priv_t*)stream->priv; if(!priv->spu_set) return NULL; return priv->spu_clut; } +/** + * \brief mp_dvdnav_get_highlight() get dvdnav highlight struct + * \param stream: - stream pointer + * \param hl : - highlight struct pointer + */ void mp_dvdnav_get_highlight (stream_t *stream, nav_highlight_t *hl) { dvdnav_priv_t *priv = (dvdnav_priv_t *) stream->priv; dvdnav_highlight_event_t hlev = priv->hlev;