2008-01-01 21:35:58 +00:00
|
|
|
#ifndef STREAM_DVD_H
|
|
|
|
#define STREAM_DVD_H
|
|
|
|
|
2006-11-03 22:03:58 +00:00
|
|
|
#ifdef USE_DVDREAD_INTERNAL
|
2006-11-18 00:33:01 +00:00
|
|
|
#include "dvdread/dvd_reader.h"
|
|
|
|
#include "dvdread/ifo_types.h"
|
|
|
|
#include "dvdread/ifo_read.h"
|
|
|
|
#include "dvdread/nav_read.h"
|
2006-06-11 21:26:35 +00:00
|
|
|
#else
|
|
|
|
#include <dvdread/dvd_reader.h>
|
|
|
|
#include <dvdread/ifo_types.h>
|
|
|
|
#include <dvdread/ifo_read.h>
|
|
|
|
#include <dvdread/nav_read.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
dvd_reader_t *dvd;
|
|
|
|
dvd_file_t *title;
|
|
|
|
ifo_handle_t *vmg_file;
|
|
|
|
tt_srpt_t *tt_srpt;
|
|
|
|
ifo_handle_t *vts_file;
|
|
|
|
vts_ptt_srpt_t *vts_ptt_srpt;
|
|
|
|
pgc_t *cur_pgc;
|
|
|
|
//
|
|
|
|
int cur_title;
|
|
|
|
int cur_cell;
|
|
|
|
int last_cell;
|
|
|
|
int cur_pack;
|
|
|
|
int cell_last_pack;
|
2006-11-07 22:49:56 +00:00
|
|
|
int cur_pgc_idx;
|
2006-06-11 21:26:35 +00:00
|
|
|
// Navi:
|
|
|
|
int packs_left;
|
|
|
|
dsi_t dsi_pack;
|
|
|
|
int angle_seek;
|
2006-11-07 22:49:56 +00:00
|
|
|
unsigned int *cell_times_table;
|
2006-06-11 21:26:35 +00:00
|
|
|
// audio datas
|
|
|
|
int nr_of_channels;
|
|
|
|
stream_language_t audio_streams[32];
|
|
|
|
// subtitles
|
|
|
|
int nr_of_subtitles;
|
|
|
|
stream_language_t subtitles[32];
|
|
|
|
} dvd_priv_t;
|
|
|
|
|
|
|
|
int dvd_number_of_subs(stream_t *stream);
|
2006-10-11 17:25:46 +00:00
|
|
|
int dvd_lang_from_aid(stream_t *stream, int id);
|
2006-06-11 21:26:35 +00:00
|
|
|
int dvd_lang_from_sid(stream_t *stream, int id);
|
|
|
|
int dvd_aid_from_lang(stream_t *stream, unsigned char* lang);
|
|
|
|
int dvd_sid_from_lang(stream_t *stream, unsigned char* lang);
|
|
|
|
int dvd_chapter_from_cell(dvd_priv_t *dvd,int title,int cell);
|
2008-01-01 21:35:58 +00:00
|
|
|
|
|
|
|
#endif /* STREAM_DVD_H */
|