Browse Source

vlc_codec: decoder_QueueCc: fix documentation

These changes include removal of a duplicate usage of "queues", as
well as extending the documentation to include description of all
arguments.

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
pull/57/head
Filip Roséen 9 years ago
committed by Rémi Denis-Courmont
parent
commit
c68b0850ce
  1. 6
      include/vlc_codec.h

6
include/vlc_codec.h

@ -305,8 +305,12 @@ static inline int decoder_QueueVideo( decoder_t *dec, picture_t *p_pic )
}
/**
* This function queues queues the Closed Captions
* This function queues the Closed Captions
*
* \param dec the decoder object
* \param p_cc the closed-caption to queue
* \param p_cc_present array-of-bool where each entry indicates whether the
* given channel is present or not
* \return 0 if queued, -1 on error
*/
static inline int decoder_QueueCc( decoder_t *dec, block_t *p_cc,

Loading…
Cancel
Save