dvd_types.h | dvd_types.h | |||
---|---|---|---|---|
skipping to change at line 21 | skipping to change at line 21 | |||
* | * | |||
* libdvdnav is distributed in the hope that it will be useful, | * libdvdnav is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
* GNU General Public License for more details. | * GNU General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | |||
* along with this program; if not, write to the Free Software | * along with this program; if not, write to the Free Software | |||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, U SA | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, U SA | |||
* | * | |||
* $Id: dvd_types.h 889 2007-04-21 11:08:56Z nicodvb $ | * $Id: dvd_types.h 1135 2008-09-06 21:55:51Z rathann $ | |||
* | * | |||
*/ | */ | |||
/* | /* | |||
* Various useful structs and enums for DVDs. | * Various useful structs and enums for DVDs. | |||
*/ | */ | |||
#ifndef DVD_H_INCLUDED | #ifndef DVD_H_INCLUDED | |||
#define DVD_H_INCLUDED | #define DVD_H_INCLUDED | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
dvdnav.h | dvdnav.h | |||
---|---|---|---|---|
skipping to change at line 20 | skipping to change at line 20 | |||
* | * | |||
* libdvdnav is distributed in the hope that it will be useful, | * libdvdnav is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
* GNU General Public License for more details. | * GNU General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | |||
* along with this program; if not, write to the Free Software | * along with this program; if not, write to the Free Software | |||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, U SA | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, U SA | |||
* | * | |||
* $Id: dvdnav.h 975 2007-11-29 23:24:05Z nicodvb $ | * $Id: dvdnav.h 1135 2008-09-06 21:55:51Z rathann $ | |||
* | * | |||
*/ | */ | |||
/* | /* | |||
* This is the main header file applications should include if they want | * This is the main header file applications should include if they want | |||
* to access dvdnav functionality. | * to access dvdnav functionality. | |||
*/ | */ | |||
#ifndef DVDNAV_H_INCLUDED | #ifndef DVDNAV_H_INCLUDED | |||
#define DVDNAV_H_INCLUDED | #define DVDNAV_H_INCLUDED | |||
skipping to change at line 288 | skipping to change at line 288 | |||
*/ | */ | |||
dvdnav_status_t dvdnav_part_play(dvdnav_t *self, int32_t title, int32_t par t); | dvdnav_status_t dvdnav_part_play(dvdnav_t *self, int32_t title, int32_t par t); | |||
/* | /* | |||
* Stores in *times an array (that the application *must* free) of | * Stores in *times an array (that the application *must* free) of | |||
* dvdtimes corresponding to the chapter times for the chosen title. | * dvdtimes corresponding to the chapter times for the chosen title. | |||
* *duration will have the duration of the title | * *duration will have the duration of the title | |||
* The number of entries in *times is the result of the function. | * The number of entries in *times is the result of the function. | |||
* On error *times is NULL and the output is 0 | * On error *times is NULL and the output is 0 | |||
*/ | */ | |||
uint32_t dvdnav_describe_title_chapters(dvdnav_t *this, int32_t title, uint 64_t **times, uint64_t *duration); | uint32_t dvdnav_describe_title_chapters(dvdnav_t *self, int32_t title, uint 64_t **times, uint64_t *duration); | |||
/* | /* | |||
* Play the specified amount of parts of the specified title of | * Play the specified amount of parts of the specified title of | |||
* the DVD then STOP. | * the DVD then STOP. | |||
* | * | |||
* Currently unimplemented! | * Currently unimplemented! | |||
*/ | */ | |||
dvdnav_status_t dvdnav_part_play_auto_stop(dvdnav_t *self, int32_t title, | dvdnav_status_t dvdnav_part_play_auto_stop(dvdnav_t *self, int32_t title, | |||
int32_t part, int32_t parts_to_pl ay); | int32_t part, int32_t parts_to_pl ay); | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||
dvdnav_events.h | dvdnav_events.h | |||
---|---|---|---|---|
skipping to change at line 20 | skipping to change at line 20 | |||
* | * | |||
* libdvdnav is distributed in the hope that it will be useful, | * libdvdnav is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
* GNU General Public License for more details. | * GNU General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | |||
* along with this program; if not, write to the Free Software | * along with this program; if not, write to the Free Software | |||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, U SA | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, U SA | |||
* | * | |||
* $Id: dvdnav_events.h 887 2007-04-20 23:24:59Z nicodvb $ | * $Id: dvdnav_events.h 1135 2008-09-06 21:55:51Z rathann $ | |||
* | * | |||
*/ | */ | |||
/* | /* | |||
* This header defines events and event types | * This header defines events and event types | |||
*/ | */ | |||
#ifndef DVDNAV_EVENTS_H_INCLUDED | #ifndef DVDNAV_EVENTS_H_INCLUDED | |||
#define DVDNAV_EVENTS_H_INCLUDED | #define DVDNAV_EVENTS_H_INCLUDED | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||