mirror of
https://github.com/mpv-player/mpv
synced 2025-02-21 15:27:00 +00:00
include stream_dvd's interface from libmpdemux/stream_dvd.h
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18685 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
689316c4d6
commit
2831b49bb5
@ -41,6 +41,11 @@ extern af_cfg_t af_cfg;
|
||||
#include "libmpdemux/stheader.h"
|
||||
#include "libmpcodecs/dec_video.h"
|
||||
|
||||
#ifdef USE_DVDREAD
|
||||
#include "libmpdemux/stream_dvd.h"
|
||||
#endif
|
||||
|
||||
|
||||
#include "m_config.h"
|
||||
#include "m_option.h"
|
||||
|
||||
|
@ -283,12 +283,10 @@ stream_t* new_memory_stream(unsigned char* data,int len);
|
||||
stream_t* open_stream(char* filename,char** options,int* file_format);
|
||||
stream_t* open_stream_full(char* filename,int mode, char** options, int* file_format);
|
||||
|
||||
//#ifdef USE_DVDREAD
|
||||
extern int dvd_title;
|
||||
extern int dvd_chapter;
|
||||
extern int dvd_last_chapter;
|
||||
extern int dvd_angle;
|
||||
//#endif
|
||||
|
||||
extern char * audio_stream;
|
||||
|
||||
@ -296,20 +294,6 @@ extern char * audio_stream;
|
||||
#include "dvdnav_stream.h"
|
||||
#endif
|
||||
|
||||
#ifdef USE_DVDREAD
|
||||
|
||||
#ifdef USE_MPDVDKIT
|
||||
#include "libmpdvdkit2/dvd_reader.h"
|
||||
#include "libmpdvdkit2/ifo_types.h"
|
||||
#include "libmpdvdkit2/ifo_read.h"
|
||||
#include "libmpdvdkit2/nav_read.h"
|
||||
#else
|
||||
#include <dvdread/dvd_reader.h>
|
||||
#include <dvdread/ifo_types.h>
|
||||
#include <dvdread/ifo_read.h>
|
||||
#include <dvdread/nav_read.h>
|
||||
#endif
|
||||
|
||||
typedef struct {
|
||||
int id; // 0 - 31 mpeg; 128 - 159 ac3; 160 - 191 pcm
|
||||
int language;
|
||||
@ -317,38 +301,4 @@ typedef struct {
|
||||
int channels;
|
||||
} stream_language_t;
|
||||
|
||||
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;
|
||||
// Navi:
|
||||
int packs_left;
|
||||
dsi_t dsi_pack;
|
||||
int angle_seek;
|
||||
// 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);
|
||||
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);
|
||||
|
||||
#endif
|
||||
|
||||
#endif // __STREAM_H
|
||||
|
@ -25,6 +25,8 @@
|
||||
#include "m_option.h"
|
||||
#include "m_struct.h"
|
||||
|
||||
#include "stream_dvd.h"
|
||||
|
||||
/// We keep these 2 for the gui atm, but they will be removed.
|
||||
extern int dvd_title;
|
||||
extern int dvd_chapter;
|
||||
|
@ -76,6 +76,10 @@
|
||||
|
||||
#include "get_path.c"
|
||||
|
||||
#ifdef USE_DVDREAD
|
||||
#include "libmpdemux/stream_dvd.h"
|
||||
#endif
|
||||
|
||||
#ifdef USE_LIBAVCODEC
|
||||
#ifdef USE_LIBAVCODEC_SO
|
||||
#include <ffmpeg/avcodec.h>
|
||||
|
Loading…
Reference in New Issue
Block a user