comparison navigation.c @ 116:4d711d0518e9 src

new event DVDNAV_WAIT
author mroi
date Tue, 25 Feb 2003 14:08:16 +0000
parents b6834e6359cf
children d09a81cf65ce
comparison
equal deleted inserted replaced
115:b527b7cbfb19 116:4d711d0518e9
37 return S_ERR; 37 return S_ERR;
38 } 38 }
39 39
40 this->position_current.still = 0; 40 this->position_current.still = 0;
41 this->skip_still = 1; 41 this->skip_still = 1;
42 this->sync_wait = 0;
43 this->sync_wait_skip = 1;
44
45 return S_OK;
46 }
47
48 dvdnav_status_t dvdnav_wait_skip(dvdnav_t *this) {
49 if(!this) {
50 printerr("Passed a NULL pointer.");
51 return S_ERR;
52 }
53
54 this->sync_wait = 0;
55 this->sync_wait_skip = 1;
42 56
43 return S_OK; 57 return S_OK;
44 } 58 }
45 59
46 dvdnav_status_t dvdnav_get_number_of_titles(dvdnav_t *this, int *titles) { 60 dvdnav_status_t dvdnav_get_number_of_titles(dvdnav_t *this, int *titles) {