comparison libass/ass.h @ 25514:8b945798b8f7

Improve comments for ass_process_* functions.
author eugeni
date Sun, 30 Dec 2007 02:17:16 +0000
parents ffc2c7164bc0
children 892813c1b7e8
comparison
equal deleted inserted replaced
25513:d7ab7fda755a 25514:8b945798b8f7
144 * Deallocates event data. Does not modify track->n_events. 144 * Deallocates event data. Does not modify track->n_events.
145 */ 145 */
146 void ass_free_event(ass_track_t* track, int eid); 146 void ass_free_event(ass_track_t* track, int eid);
147 147
148 /** 148 /**
149 * \brief Process Codec Private section of subtitle stream 149 * \brief Parse Codec Private section of subtitle stream
150 * \param track target track 150 * \param track target track
151 * \param data string to parse 151 * \param data string to parse
152 * \param size length of data 152 * \param size length of data
153 */ 153 */
154 void ass_process_codec_private(ass_track_t* track, char *data, int size); 154 void ass_process_codec_private(ass_track_t* track, char *data, int size);
155 155
156 /** 156 /**
157 * \brief Process a chunk of subtitle stream data. In matroska, this containes exactly 1 event (or a commentary) 157 * \brief Parse a chunk of subtitle stream data. In matroska, this containes exactly 1 event (or a commentary)
158 * \param track track 158 * \param track track
159 * \param data string to parse 159 * \param data string to parse
160 * \param size length of data 160 * \param size length of data
161 * \param timecode starting time of the event (milliseconds) 161 * \param timecode starting time of the event (milliseconds)
162 * \param duration duration of the event (milliseconds) 162 * \param duration duration of the event (milliseconds)