comparison dvdnav/dvdnav.h @ 413:f30f443d3841 src

Fix typos Mike Castle kindly sent a patch to fix a few typos in dvdnav.h. Thanks Mike!
author erik
date Sat, 12 Feb 2011 20:29:58 +0000
parents 9b8bfc56a7fe
children a67a8292eefe
comparison
equal deleted inserted replaced
412:34e632fb6a39 413:f30f443d3841
178 /********************************************************************* 178 /*********************************************************************
179 * reading data * 179 * reading data *
180 *********************************************************************/ 180 *********************************************************************/
181 181
182 /* 182 /*
183 * These functions are used to poll the playback enginge and actually get data 183 * These functions are used to poll the playback engine and actually get data
184 * off the DVD. 184 * off the DVD.
185 */ 185 */
186 186
187 /* 187 /*
188 * Attempts to get the next block off the DVD and copies it into the buffer 'buf'. 188 * Attempts to get the next block off the DVD and copies it into the buffer 'buf'.
387 dvdnav_status_t dvdnav_time_search(dvdnav_t *self, 387 dvdnav_status_t dvdnav_time_search(dvdnav_t *self,
388 uint64_t time); 388 uint64_t time);
389 389
390 /* 390 /*
391 * Stop playing current position and play the "GoUp"-program chain. 391 * Stop playing current position and play the "GoUp"-program chain.
392 * (which generally leads to the title menu or a higer-level menu). 392 * (which generally leads to the title menu or a higher-level menu).
393 */ 393 */
394 dvdnav_status_t dvdnav_go_up(dvdnav_t *self); 394 dvdnav_status_t dvdnav_go_up(dvdnav_t *self);
395 395
396 /* 396 /*
397 * Stop playing the current position and start playback at the 397 * Stop playing the current position and start playback at the
539 *********************************************************************/ 539 *********************************************************************/
540 540
541 /* 541 /*
542 * Return a string describing the title of the DVD. 542 * Return a string describing the title of the DVD.
543 * This is an ID string encoded on the disc by the author. In many cases 543 * This is an ID string encoded on the disc by the author. In many cases
544 * this is a descriptive string such as `THE_MATRIX' but sometimes is sigularly 544 * this is a descriptive string such as `THE_MATRIX' but sometimes is singularly
545 * uninformative such as `PDVD-011421'. Some DVD authors even forget to set this, 545 * uninformative such as `PDVD-011421'. Some DVD authors even forget to set this,
546 * so you may also read the default of the authoring software they used, like 546 * so you may also read the default of the authoring software they used, like
547 * `DVDVolume'. 547 * `DVDVolume'.
548 */ 548 */
549 dvdnav_status_t dvdnav_get_title_string(dvdnav_t *self, const char **title_str); 549 dvdnav_status_t dvdnav_get_title_string(dvdnav_t *self, const char **title_str);
589 * (returns 0xffff if no such stream). 589 * (returns 0xffff if no such stream).
590 */ 590 */
591 uint16_t dvdnav_audio_stream_format(dvdnav_t *self, uint8_t stream); 591 uint16_t dvdnav_audio_stream_format(dvdnav_t *self, uint8_t stream);
592 592
593 /* 593 /*
594 * Returns number of channelsn in *logical* audio stream 'stream' 594 * Returns number of channels in *logical* audio stream 'stream'
595 * (returns 0xffff if no such stream). 595 * (returns 0xffff if no such stream).
596 */ 596 */
597 uint16_t dvdnav_audio_stream_channels(dvdnav_t *self, uint8_t stream); 597 uint16_t dvdnav_audio_stream_channels(dvdnav_t *self, uint8_t stream);
598 598
599 /* 599 /*
658 * dvdnav_get_angle_info() as definitive only up to the next time you call 658 * dvdnav_get_angle_info() as definitive only up to the next time you call
659 * dvdnav_get_next_block(). 659 * dvdnav_get_next_block().
660 */ 660 */
661 661
662 /* 662 /*
663 * Sets the current angle. If you try to follow a non existant angle 663 * Sets the current angle. If you try to follow a non existent angle
664 * the call fails. 664 * the call fails.
665 */ 665 */
666 dvdnav_status_t dvdnav_angle_change(dvdnav_t *self, int32_t angle); 666 dvdnav_status_t dvdnav_angle_change(dvdnav_t *self, int32_t angle);
667 667
668 /* 668 /*