comparison dvdnav.h @ 88:929f732a0135 src

Implement proper prev/next chapter/part. I don't know why someone has not noticed the problem until now.
author jcdutton
date Mon, 02 Sep 2002 03:20:01 +0000
parents 61c0ee1bbb7a
children eeabf5a51b2b
comparison
equal deleted inserted replaced
87:b1cbe3464fb9 88:929f732a0135
394 */ 394 */
395 dvdnav_status_t dvdnav_part_search(dvdnav_t *self, int part); 395 dvdnav_status_t dvdnav_part_search(dvdnav_t *self, int part);
396 396
397 /** 397 /**
398 * Stop playing the current title and start playback of the title 398 * Stop playing the current title and start playback of the title
399 * from the previous part (chapter).
400 *
401 * \param self Pointer to dvdnav_t associated with this operation.
402 */
403 dvdnav_status_t dvdnav_prev_part_search(dvdnav_t *self);
404
405 /**
406 * Stop playing the current title and start playback of the title
407 * from the next part (chapter).
408 *
409 * \param self Pointer to dvdnav_t associated with this operation.
410 */
411 dvdnav_status_t dvdnav_next_part_search(dvdnav_t *self);
412
413 /**
414 * Stop playing the current title and start playback of the title
399 * from the previous program (if it exists). 415 * from the previous program (if it exists).
400 * 416 *
401 * \param self Pointer to dvdnav_t associated with this operation. 417 * \param self Pointer to dvdnav_t associated with this operation.
402 */ 418 */
403 dvdnav_status_t dvdnav_prev_pg_search(dvdnav_t *self); 419 dvdnav_status_t dvdnav_prev_pg_search(dvdnav_t *self);