2001-06-04 17:51:17 +00:00
|
|
|
#ifndef __STREAM_H
|
|
|
|
#define __STREAM_H
|
2001-04-22 16:56:20 +00:00
|
|
|
|
2002-03-15 16:06:10 +00:00
|
|
|
#include "mp_msg.h"
|
2002-01-07 09:22:01 +00:00
|
|
|
#include <inttypes.h>
|
2002-03-23 21:52:13 +00:00
|
|
|
#include <sys/types.h>
|
2002-01-07 09:22:01 +00:00
|
|
|
|
2001-04-22 16:56:20 +00:00
|
|
|
#define STREAM_BUFFER_SIZE 2048
|
|
|
|
|
|
|
|
#define STREAMTYPE_FILE 0
|
|
|
|
#define STREAMTYPE_VCD 1
|
2001-05-03 23:32:56 +00:00
|
|
|
#define STREAMTYPE_STREAM 2 // same as FILE but no seeking (for stdin)
|
2001-08-20 20:17:44 +00:00
|
|
|
#define STREAMTYPE_DVD 3
|
2001-10-10 00:47:17 +00:00
|
|
|
#define STREAMTYPE_MEMORY 4
|
2001-11-09 23:46:06 +00:00
|
|
|
#define STREAMTYPE_TV 5
|
2002-01-08 01:19:54 +00:00
|
|
|
#define STREAMTYPE_PLAYLIST 6
|
2002-02-06 20:16:35 +00:00
|
|
|
#define STREAMTYPE_MF 7
|
2002-03-16 14:32:03 +00:00
|
|
|
#define STREAMTYPE_DS 8
|
2002-04-03 17:50:48 +00:00
|
|
|
#define STREAMTYPE_DVDNAV 9 // we cannot safely "seek" in this...
|
2001-04-22 16:56:20 +00:00
|
|
|
|
|
|
|
#define VCD_SECTOR_SIZE 2352
|
|
|
|
#define VCD_SECTOR_OFFS 24
|
|
|
|
#define VCD_SECTOR_DATA 2324
|
|
|
|
|
2001-11-20 22:21:20 +00:00
|
|
|
#ifdef STREAMING
|
|
|
|
#include "network.h"
|
|
|
|
#endif
|
|
|
|
|
2001-04-22 16:56:20 +00:00
|
|
|
int vcd_seek_to_track(int fd,int track);
|
|
|
|
void vcd_read_toc(int fd);
|
|
|
|
|
|
|
|
#ifdef VCD_CACHE
|
|
|
|
void vcd_cache_init(int s);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int fd;
|
2001-07-31 23:18:16 +00:00
|
|
|
off_t pos;
|
2001-04-22 16:56:20 +00:00
|
|
|
int eof;
|
|
|
|
int type; // 0=file 1=VCD
|
|
|
|
unsigned int buf_pos,buf_len;
|
2001-07-31 23:18:16 +00:00
|
|
|
off_t start_pos,end_pos;
|
2001-10-20 23:51:02 +00:00
|
|
|
unsigned int cache_pid;
|
|
|
|
void* cache_data;
|
2001-08-20 20:17:44 +00:00
|
|
|
void* priv; // used for DVD
|
2001-10-10 00:47:17 +00:00
|
|
|
unsigned char buffer[STREAM_BUFFER_SIZE>VCD_SECTOR_SIZE?STREAM_BUFFER_SIZE:VCD_SECTOR_SIZE];
|
2001-11-20 22:21:20 +00:00
|
|
|
#ifdef STREAMING
|
|
|
|
streaming_ctrl_t *streaming_ctrl;
|
|
|
|
#endif
|
2001-04-22 16:56:20 +00:00
|
|
|
} stream_t;
|
|
|
|
|
2001-10-20 23:51:02 +00:00
|
|
|
#ifdef USE_STREAM_CACHE
|
2002-02-23 21:22:55 +00:00
|
|
|
int stream_enable_cache(stream_t *stream,int size,int min,int prefill);
|
2001-10-20 23:51:02 +00:00
|
|
|
#else
|
|
|
|
// no cache
|
|
|
|
#define cache_stream_fill_buffer(x) stream_fill_buffer(x)
|
|
|
|
#define cache_stream_seek_long(x,y) stream_seek_long(x,y)
|
2002-03-23 21:52:13 +00:00
|
|
|
#define stream_enable_cache(x,y,z,w) 1
|
2001-10-20 23:51:02 +00:00
|
|
|
#endif
|
2001-07-31 23:18:16 +00:00
|
|
|
|
2001-10-20 23:51:02 +00:00
|
|
|
int cache_stream_fill_buffer(stream_t *s);
|
|
|
|
int cache_stream_seek_long(stream_t *s,off_t pos);
|
2001-04-22 16:56:20 +00:00
|
|
|
|
2001-12-25 11:20:58 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2001-04-22 16:56:20 +00:00
|
|
|
inline static int stream_read_char(stream_t *s){
|
|
|
|
return (s->buf_pos<s->buf_len)?s->buffer[s->buf_pos++]:
|
2001-10-20 23:51:02 +00:00
|
|
|
(cache_stream_fill_buffer(s)?s->buffer[s->buf_pos++]:-256);
|
2001-04-22 16:56:20 +00:00
|
|
|
// if(s->buf_pos<s->buf_len) return s->buffer[s->buf_pos++];
|
|
|
|
// stream_fill_buffer(s);
|
|
|
|
// if(s->buf_pos<s->buf_len) return s->buffer[s->buf_pos++];
|
|
|
|
// return 0; // EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
inline static unsigned int stream_read_word(stream_t *s){
|
|
|
|
int x,y;
|
|
|
|
x=stream_read_char(s);
|
|
|
|
y=stream_read_char(s);
|
|
|
|
return (x<<8)|y;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline static unsigned int stream_read_dword(stream_t *s){
|
|
|
|
unsigned int y;
|
|
|
|
y=stream_read_char(s);
|
|
|
|
y=(y<<8)|stream_read_char(s);
|
|
|
|
y=(y<<8)|stream_read_char(s);
|
|
|
|
y=(y<<8)|stream_read_char(s);
|
|
|
|
return y;
|
|
|
|
}
|
|
|
|
|
2002-01-16 03:25:07 +00:00
|
|
|
#define stream_read_fourcc stream_read_dword_le
|
|
|
|
|
2001-04-22 16:56:20 +00:00
|
|
|
inline static unsigned int stream_read_word_le(stream_t *s){
|
|
|
|
int x,y;
|
|
|
|
x=stream_read_char(s);
|
|
|
|
y=stream_read_char(s);
|
|
|
|
return (y<<8)|x;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline static unsigned int stream_read_dword_le(stream_t *s){
|
|
|
|
unsigned int y;
|
|
|
|
y=stream_read_char(s);
|
|
|
|
y|=stream_read_char(s)<<8;
|
|
|
|
y|=stream_read_char(s)<<16;
|
|
|
|
y|=stream_read_char(s)<<24;
|
|
|
|
return y;
|
|
|
|
}
|
|
|
|
|
2002-01-05 19:21:06 +00:00
|
|
|
inline static uint64_t stream_read_qword(stream_t *s){
|
|
|
|
uint64_t y;
|
|
|
|
y = stream_read_char(s);
|
|
|
|
y=(y<<8)|stream_read_char(s);
|
|
|
|
y=(y<<8)|stream_read_char(s);
|
|
|
|
y=(y<<8)|stream_read_char(s);
|
|
|
|
y=(y<<8)|stream_read_char(s);
|
|
|
|
y=(y<<8)|stream_read_char(s);
|
|
|
|
y=(y<<8)|stream_read_char(s);
|
|
|
|
y=(y<<8)|stream_read_char(s);
|
|
|
|
return y;
|
|
|
|
}
|
|
|
|
|
2002-03-24 02:25:41 +00:00
|
|
|
inline static unsigned int stream_read_int24(stream_t *s){
|
|
|
|
unsigned int y;
|
|
|
|
y = stream_read_char(s);
|
|
|
|
y=(y<<8)|stream_read_char(s);
|
|
|
|
y=(y<<8)|stream_read_char(s);
|
|
|
|
return y;
|
|
|
|
}
|
|
|
|
|
2001-10-21 18:13:48 +00:00
|
|
|
inline static int stream_read(stream_t *s,char* mem,int total){
|
|
|
|
int len=total;
|
2001-04-22 16:56:20 +00:00
|
|
|
while(len>0){
|
|
|
|
int x;
|
|
|
|
x=s->buf_len-s->buf_pos;
|
|
|
|
if(x==0){
|
2001-10-21 18:13:48 +00:00
|
|
|
if(!cache_stream_fill_buffer(s)) return total-len; // EOF
|
2001-04-22 16:56:20 +00:00
|
|
|
x=s->buf_len-s->buf_pos;
|
|
|
|
}
|
2002-03-15 16:06:10 +00:00
|
|
|
if(s->buf_pos>s->buf_len) mp_msg(MSGT_DEMUX, MSGL_WARN, "stream_read: WARNING! s->buf_pos>s->buf_len\n");
|
2001-04-22 16:56:20 +00:00
|
|
|
if(x>len) x=len;
|
|
|
|
memcpy(mem,&s->buffer[s->buf_pos],x);
|
|
|
|
s->buf_pos+=x; mem+=x; len-=x;
|
|
|
|
}
|
2001-10-21 18:13:48 +00:00
|
|
|
return total;
|
2001-04-22 16:56:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static int stream_eof(stream_t *s){
|
|
|
|
return s->eof;
|
|
|
|
}
|
|
|
|
|
2001-07-31 23:18:16 +00:00
|
|
|
inline static off_t stream_tell(stream_t *s){
|
2001-04-22 16:56:20 +00:00
|
|
|
return s->pos+s->buf_pos-s->buf_len;
|
|
|
|
}
|
|
|
|
|
2001-07-31 23:18:16 +00:00
|
|
|
inline static int stream_seek(stream_t *s,off_t pos){
|
2001-04-22 16:56:20 +00:00
|
|
|
|
2002-03-15 16:06:10 +00:00
|
|
|
mp_dbg(MSGT_DEMUX, MSGL_DBG3, "seek to 0x%qX\n",(long long)pos);
|
2001-04-22 16:56:20 +00:00
|
|
|
|
|
|
|
if(pos<s->pos){
|
2001-07-31 23:18:16 +00:00
|
|
|
off_t x=pos-(s->pos-s->buf_len);
|
2001-04-22 16:56:20 +00:00
|
|
|
if(x>=0){
|
|
|
|
s->buf_pos=x;
|
|
|
|
// putchar('*');fflush(stdout);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-10-20 23:51:02 +00:00
|
|
|
return cache_stream_seek_long(s,pos);
|
2001-04-22 16:56:20 +00:00
|
|
|
}
|
|
|
|
|
2002-01-03 11:59:43 +00:00
|
|
|
inline static int stream_skip(stream_t *s,off_t len){
|
2001-05-03 23:32:56 +00:00
|
|
|
if(len<0 || (len>2*STREAM_BUFFER_SIZE && s->type!=STREAMTYPE_STREAM)){
|
2001-04-22 16:56:20 +00:00
|
|
|
// negative or big skip!
|
2001-08-12 01:59:22 +00:00
|
|
|
return stream_seek(s,stream_tell(s)+len);
|
2001-04-22 16:56:20 +00:00
|
|
|
}
|
|
|
|
while(len>0){
|
|
|
|
int x=s->buf_len-s->buf_pos;
|
|
|
|
if(x==0){
|
2001-10-20 23:51:02 +00:00
|
|
|
if(!cache_stream_fill_buffer(s)) return 0; // EOF
|
2001-04-22 16:56:20 +00:00
|
|
|
x=s->buf_len-s->buf_pos;
|
|
|
|
}
|
|
|
|
if(x>len) x=len;
|
|
|
|
//memcpy(mem,&s->buf[s->buf_pos],x);
|
|
|
|
s->buf_pos+=x; len-=x;
|
|
|
|
}
|
2001-08-12 01:59:22 +00:00
|
|
|
return 1;
|
2001-04-22 16:56:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void stream_reset(stream_t *s);
|
|
|
|
stream_t* new_stream(int fd,int type);
|
|
|
|
void free_stream(stream_t *s);
|
2001-10-10 00:47:17 +00:00
|
|
|
stream_t* new_memory_stream(unsigned char* data,int len);
|
2001-10-30 17:03:11 +00:00
|
|
|
stream_t* open_stream(char* filename,int vcd_track,int* file_format);
|
|
|
|
|
|
|
|
//#ifdef USE_DVDREAD
|
2002-01-29 12:11:52 +00:00
|
|
|
struct config;
|
2001-10-30 17:03:11 +00:00
|
|
|
extern int dvd_title;
|
|
|
|
extern int dvd_chapter;
|
2002-01-21 09:44:31 +00:00
|
|
|
extern int dvd_last_chapter;
|
2001-10-30 17:03:11 +00:00
|
|
|
extern int dvd_angle;
|
2002-03-28 20:40:21 +00:00
|
|
|
extern int dvd_nav;
|
2002-01-24 23:02:59 +00:00
|
|
|
int dvd_parse_chapter_range(struct config*, const char*);
|
2001-10-30 17:03:11 +00:00
|
|
|
//#endif
|
2001-06-04 17:51:17 +00:00
|
|
|
|
2002-04-03 17:50:48 +00:00
|
|
|
#ifdef USE_DVDNAV
|
|
|
|
#include "dvdnav_stream.h"
|
|
|
|
#endif
|
|
|
|
|
2001-11-16 22:26:57 +00:00
|
|
|
#ifdef USE_DVDREAD
|
|
|
|
|
|
|
|
#include <dvdread/dvd_reader.h>
|
|
|
|
#include <dvdread/ifo_types.h>
|
|
|
|
#include <dvdread/ifo_read.h>
|
|
|
|
#include <dvdread/nav_read.h>
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int id; // 0 - 31 mpeg; 128 - 159 ac3; 160 - 191 pcm
|
|
|
|
int language;
|
2001-12-25 23:31:37 +00:00
|
|
|
} stream_language_t;
|
2001-11-21 10:30:59 +00:00
|
|
|
|
2001-11-16 22:26:57 +00:00
|
|
|
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_cell;
|
2002-01-21 09:44:31 +00:00
|
|
|
int last_cell;
|
2001-11-16 22:26:57 +00:00
|
|
|
int cur_pack;
|
|
|
|
int cell_last_pack;
|
|
|
|
// Navi:
|
|
|
|
int packs_left;
|
|
|
|
dsi_t dsi_pack;
|
|
|
|
int angle_seek;
|
|
|
|
// audio datas
|
|
|
|
int nr_of_channels;
|
2001-12-25 23:31:37 +00:00
|
|
|
stream_language_t audio_streams[32];
|
2001-11-21 10:30:59 +00:00
|
|
|
// subtitles
|
|
|
|
int nr_of_subtitles;
|
2001-12-25 23:31:37 +00:00
|
|
|
stream_language_t subtitles[32];
|
2001-11-16 22:26:57 +00:00
|
|
|
} dvd_priv_t;
|
|
|
|
|
2001-12-26 00:16:09 +00:00
|
|
|
int dvd_aid_from_lang(stream_t *stream, unsigned char* lang);
|
|
|
|
int dvd_sid_from_lang(stream_t *stream, unsigned char* lang);
|
|
|
|
|
2001-11-16 22:26:57 +00:00
|
|
|
#endif
|
|
|
|
|
2001-06-04 17:51:17 +00:00
|
|
|
#endif // __STREAM_H
|