1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-17 12:25:03 +00:00

More doxygen comments

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23922 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-07-29 17:57:12 +00:00
parent 0c9c146505
commit ecd76ccd5c

View File

@ -627,12 +627,22 @@ int dvdnav_number_of_subs(stream_t *stream) {
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;