Mercurial > mplayer.hg
annotate libmpdemux/stream.h @ 8657:37b083f196d7
10l fixes sync?
author | faust3 |
---|---|
date | Mon, 30 Dec 2002 13:52:29 +0000 |
parents | 487cfc28525d |
children | 6af7a6595cc9 |
rev | line source |
---|---|
998
8c83e3ff26cc
Added ifndef to prevent multiple header file inclusion.
bertrand
parents:
692
diff
changeset
|
1 #ifndef __STREAM_H |
8c83e3ff26cc
Added ifndef to prevent multiple header file inclusion.
bertrand
parents:
692
diff
changeset
|
2 #define __STREAM_H |
578 | 3 |
5086 | 4 #include "mp_msg.h" |
7412
ecef4f2191b2
some cosmetics - reordering declarations, 10l for cache2
arpi
parents:
7408
diff
changeset
|
5 #include <string.h> |
4029
3c87dee7a324
patch for missing include by Steven M. Schultz <sms@2BSD.COM>
pl
parents:
3998
diff
changeset
|
6 #include <inttypes.h> |
5292 | 7 #include <sys/types.h> |
4029
3c87dee7a324
patch for missing include by Steven M. Schultz <sms@2BSD.COM>
pl
parents:
3998
diff
changeset
|
8 |
7407 | 9 #define STREAMTYPE_DUMMY -1 // for placeholders, when the actual reading is handled in the demuxer |
10 #define STREAMTYPE_FILE 0 // read from seekable file | |
11 #define STREAMTYPE_VCD 1 // raw mode-2 CDROM reading, 2324 bytes/sector | |
12 #define STREAMTYPE_STREAM 2 // same as FILE but no seeking (for net/stdin) | |
13 #define STREAMTYPE_DVD 3 // libdvdread | |
14 #define STREAMTYPE_MEMORY 4 // read data from memory area | |
15 #define STREAMTYPE_PLAYLIST 6 // FIXME!!! same as STREAMTYPE_FILE now | |
16 #define STREAMTYPE_DS 8 // read from a demuxer stream | |
17 #define STREAMTYPE_DVDNAV 9 // we cannot safely "seek" in this... | |
18 #define STREAMTYPE_CDDA 10 // raw audio CD reader | |
7630
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7412
diff
changeset
|
19 #define STREAMTYPE_SMB 11 // smb:// url, using libsmbclient (samba) |
578 | 20 |
7412
ecef4f2191b2
some cosmetics - reordering declarations, 10l for cache2
arpi
parents:
7408
diff
changeset
|
21 #define STREAM_BUFFER_SIZE 2048 |
ecef4f2191b2
some cosmetics - reordering declarations, 10l for cache2
arpi
parents:
7408
diff
changeset
|
22 |
578 | 23 #define VCD_SECTOR_SIZE 2352 |
24 #define VCD_SECTOR_OFFS 24 | |
25 #define VCD_SECTOR_DATA 2324 | |
26 | |
3043
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
27 #ifdef STREAMING |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
28 #include "network.h" |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
29 #endif |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
30 |
578 | 31 int vcd_seek_to_track(int fd,int track); |
32 void vcd_read_toc(int fd); | |
33 | |
8164
487cfc28525d
New config system + cleanup of header inter dependency
albeu
parents:
7854
diff
changeset
|
34 typedef struct stream_st { |
7407 | 35 int fd; // file descriptor, see man open(2) |
36 int type; // see STREAMTYPE_* | |
578 | 37 unsigned int buf_pos,buf_len; |
6224
79b2b4c3c435
off_t fields reordered, to avoid problems due to struct padding
arpi
parents:
5819
diff
changeset
|
38 off_t pos,start_pos,end_pos; |
79b2b4c3c435
off_t fields reordered, to avoid problems due to struct padding
arpi
parents:
5819
diff
changeset
|
39 int eof; |
2322 | 40 unsigned int cache_pid; |
41 void* cache_data; | |
7329
9129781e5939
removed messy global 'tv_handle', use stream->priv for that purpose
arpi
parents:
7245
diff
changeset
|
42 void* priv; // used for DVD, TV, RTSP etc |
7407 | 43 char* url; // strdup() of filename/url |
3043
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
44 #ifdef STREAMING |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
45 streaming_ctrl_t *streaming_ctrl; |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
46 #endif |
7407 | 47 unsigned char buffer[STREAM_BUFFER_SIZE>VCD_SECTOR_SIZE?STREAM_BUFFER_SIZE:VCD_SECTOR_SIZE]; |
578 | 48 } stream_t; |
49 | |
2322 | 50 #ifdef USE_STREAM_CACHE |
4825
41d2da3bd082
Make blocking call in libmpdemux interuptable (only with new input,
albeu
parents:
4551
diff
changeset
|
51 int stream_enable_cache(stream_t *stream,int size,int min,int prefill); |
7412
ecef4f2191b2
some cosmetics - reordering declarations, 10l for cache2
arpi
parents:
7408
diff
changeset
|
52 int cache_stream_fill_buffer(stream_t *s); |
ecef4f2191b2
some cosmetics - reordering declarations, 10l for cache2
arpi
parents:
7408
diff
changeset
|
53 int cache_stream_seek_long(stream_t *s,off_t pos); |
2322 | 54 #else |
7412
ecef4f2191b2
some cosmetics - reordering declarations, 10l for cache2
arpi
parents:
7408
diff
changeset
|
55 // no cache, define wrappers: |
2322 | 56 #define cache_stream_fill_buffer(x) stream_fill_buffer(x) |
57 #define cache_stream_seek_long(x,y) stream_seek_long(x,y) | |
5292 | 58 #define stream_enable_cache(x,y,z,w) 1 |
2322 | 59 #endif |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
60 |
578 | 61 inline static int stream_read_char(stream_t *s){ |
62 return (s->buf_pos<s->buf_len)?s->buffer[s->buf_pos++]: | |
2322 | 63 (cache_stream_fill_buffer(s)?s->buffer[s->buf_pos++]:-256); |
578 | 64 // if(s->buf_pos<s->buf_len) return s->buffer[s->buf_pos++]; |
65 // stream_fill_buffer(s); | |
66 // if(s->buf_pos<s->buf_len) return s->buffer[s->buf_pos++]; | |
67 // return 0; // EOF | |
68 } | |
69 | |
70 inline static unsigned int stream_read_word(stream_t *s){ | |
71 int x,y; | |
72 x=stream_read_char(s); | |
73 y=stream_read_char(s); | |
74 return (x<<8)|y; | |
75 } | |
76 | |
77 inline static unsigned int stream_read_dword(stream_t *s){ | |
78 unsigned int y; | |
79 y=stream_read_char(s); | |
80 y=(y<<8)|stream_read_char(s); | |
81 y=(y<<8)|stream_read_char(s); | |
82 y=(y<<8)|stream_read_char(s); | |
83 return y; | |
84 } | |
85 | |
4189 | 86 #define stream_read_fourcc stream_read_dword_le |
87 | |
578 | 88 inline static unsigned int stream_read_word_le(stream_t *s){ |
89 int x,y; | |
90 x=stream_read_char(s); | |
91 y=stream_read_char(s); | |
92 return (y<<8)|x; | |
93 } | |
94 | |
95 inline static unsigned int stream_read_dword_le(stream_t *s){ | |
96 unsigned int y; | |
97 y=stream_read_char(s); | |
98 y|=stream_read_char(s)<<8; | |
99 y|=stream_read_char(s)<<16; | |
100 y|=stream_read_char(s)<<24; | |
101 return y; | |
102 } | |
103 | |
3998 | 104 inline static uint64_t stream_read_qword(stream_t *s){ |
105 uint64_t y; | |
106 y = stream_read_char(s); | |
107 y=(y<<8)|stream_read_char(s); | |
108 y=(y<<8)|stream_read_char(s); | |
109 y=(y<<8)|stream_read_char(s); | |
110 y=(y<<8)|stream_read_char(s); | |
111 y=(y<<8)|stream_read_char(s); | |
112 y=(y<<8)|stream_read_char(s); | |
113 y=(y<<8)|stream_read_char(s); | |
114 return y; | |
115 } | |
116 | |
5301 | 117 inline static unsigned int stream_read_int24(stream_t *s){ |
118 unsigned int y; | |
119 y = stream_read_char(s); | |
120 y=(y<<8)|stream_read_char(s); | |
121 y=(y<<8)|stream_read_char(s); | |
122 return y; | |
123 } | |
124 | |
2347 | 125 inline static int stream_read(stream_t *s,char* mem,int total){ |
126 int len=total; | |
578 | 127 while(len>0){ |
128 int x; | |
129 x=s->buf_len-s->buf_pos; | |
130 if(x==0){ | |
2347 | 131 if(!cache_stream_fill_buffer(s)) return total-len; // EOF |
578 | 132 x=s->buf_len-s->buf_pos; |
133 } | |
5086 | 134 if(s->buf_pos>s->buf_len) mp_msg(MSGT_DEMUX, MSGL_WARN, "stream_read: WARNING! s->buf_pos>s->buf_len\n"); |
578 | 135 if(x>len) x=len; |
136 memcpy(mem,&s->buffer[s->buf_pos],x); | |
137 s->buf_pos+=x; mem+=x; len-=x; | |
138 } | |
2347 | 139 return total; |
578 | 140 } |
141 | |
142 inline static int stream_eof(stream_t *s){ | |
143 return s->eof; | |
144 } | |
145 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
146 inline static off_t stream_tell(stream_t *s){ |
578 | 147 return s->pos+s->buf_pos-s->buf_len; |
148 } | |
149 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
150 inline static int stream_seek(stream_t *s,off_t pos){ |
578 | 151 |
5086 | 152 mp_dbg(MSGT_DEMUX, MSGL_DBG3, "seek to 0x%qX\n",(long long)pos); |
578 | 153 |
154 if(pos<s->pos){ | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
155 off_t x=pos-(s->pos-s->buf_len); |
578 | 156 if(x>=0){ |
157 s->buf_pos=x; | |
158 // putchar('*');fflush(stdout); | |
159 return 1; | |
160 } | |
161 } | |
162 | |
2322 | 163 return cache_stream_seek_long(s,pos); |
578 | 164 } |
165 | |
3962 | 166 inline static int stream_skip(stream_t *s,off_t len){ |
692 | 167 if(len<0 || (len>2*STREAM_BUFFER_SIZE && s->type!=STREAMTYPE_STREAM)){ |
578 | 168 // negative or big skip! |
1491 | 169 return stream_seek(s,stream_tell(s)+len); |
578 | 170 } |
171 while(len>0){ | |
172 int x=s->buf_len-s->buf_pos; | |
173 if(x==0){ | |
2322 | 174 if(!cache_stream_fill_buffer(s)) return 0; // EOF |
578 | 175 x=s->buf_len-s->buf_pos; |
176 } | |
177 if(x>len) x=len; | |
178 //memcpy(mem,&s->buf[s->buf_pos],x); | |
179 s->buf_pos+=x; len-=x; | |
180 } | |
1491 | 181 return 1; |
578 | 182 } |
183 | |
184 void stream_reset(stream_t *s); | |
185 stream_t* new_stream(int fd,int type); | |
186 void free_stream(stream_t *s); | |
2144 | 187 stream_t* new_memory_stream(unsigned char* data,int len); |
2555
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
188 stream_t* open_stream(char* filename,int vcd_track,int* file_format); |
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
189 |
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
190 //#ifdef USE_DVDREAD |
4407 | 191 struct config; |
2555
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
192 extern int dvd_title; |
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
193 extern int dvd_chapter; |
4291
e889d37f25b2
Add option -last-chapter for DVD playing/encoding
kmkaplan
parents:
4189
diff
changeset
|
194 extern int dvd_last_chapter; |
2555
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
195 extern int dvd_angle; |
5380
8a01cde9cf39
DVDnav support patch by David Holm and Kees Cook <mplayer@outflux.net>
arpi
parents:
5301
diff
changeset
|
196 extern int dvd_nav; |
4343
b0c8eed7473c
Extended DVD chapter specification. Remove -last-chapter option.
kmkaplan
parents:
4315
diff
changeset
|
197 int dvd_parse_chapter_range(struct config*, const char*); |
2555
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
198 //#endif |
998
8c83e3ff26cc
Added ifndef to prevent multiple header file inclusion.
bertrand
parents:
692
diff
changeset
|
199 |
6623 | 200 extern char * audio_stream; |
201 | |
5471
348c7d83e710
dvdnav_stream functions - dvdnav patch by Kees Cook <mplayer@outflux.net>
arpi
parents:
5380
diff
changeset
|
202 #ifdef USE_DVDNAV |
348c7d83e710
dvdnav_stream functions - dvdnav patch by Kees Cook <mplayer@outflux.net>
arpi
parents:
5380
diff
changeset
|
203 #include "dvdnav_stream.h" |
348c7d83e710
dvdnav_stream functions - dvdnav patch by Kees Cook <mplayer@outflux.net>
arpi
parents:
5380
diff
changeset
|
204 #endif |
348c7d83e710
dvdnav_stream functions - dvdnav patch by Kees Cook <mplayer@outflux.net>
arpi
parents:
5380
diff
changeset
|
205 |
2935 | 206 #ifdef USE_DVDREAD |
207 | |
5819 | 208 #ifdef USE_MPDVDKIT |
7245 | 209 #if (USE_MPDVDKIT == 2) |
7196 | 210 #include "../libmpdvdkit2/dvd_reader.h" |
211 #include "../libmpdvdkit2/ifo_types.h" | |
212 #include "../libmpdvdkit2/ifo_read.h" | |
213 #include "../libmpdvdkit2/nav_read.h" | |
214 #else | |
5819 | 215 #include "../libmpdvdkit/dvd_reader.h" |
216 #include "../libmpdvdkit/ifo_types.h" | |
217 #include "../libmpdvdkit/ifo_read.h" | |
218 #include "../libmpdvdkit/nav_read.h" | |
7196 | 219 #endif |
5819 | 220 #else |
2935 | 221 #include <dvdread/dvd_reader.h> |
222 #include <dvdread/ifo_types.h> | |
223 #include <dvdread/ifo_read.h> | |
224 #include <dvdread/nav_read.h> | |
5819 | 225 #endif |
2935 | 226 |
227 typedef struct { | |
228 int id; // 0 - 31 mpeg; 128 - 159 ac3; 160 - 191 pcm | |
229 int language; | |
6651 | 230 int type; |
231 int channels; | |
3751
d9d2ee82a243
subtitle_t + audio_stream_t -> stream_language_t (cleanup)
arpi
parents:
3726
diff
changeset
|
232 } stream_language_t; |
3048 | 233 |
234 typedef struct { | |
2935 | 235 dvd_reader_t *dvd; |
236 dvd_file_t *title; | |
237 ifo_handle_t *vmg_file; | |
238 tt_srpt_t *tt_srpt; | |
239 ifo_handle_t *vts_file; | |
240 vts_ptt_srpt_t *vts_ptt_srpt; | |
241 pgc_t *cur_pgc; | |
242 // | |
243 int cur_cell; | |
4291
e889d37f25b2
Add option -last-chapter for DVD playing/encoding
kmkaplan
parents:
4189
diff
changeset
|
244 int last_cell; |
2935 | 245 int cur_pack; |
246 int cell_last_pack; | |
247 // Navi: | |
248 int packs_left; | |
249 dsi_t dsi_pack; | |
250 int angle_seek; | |
251 // audio datas | |
252 int nr_of_channels; | |
3751
d9d2ee82a243
subtitle_t + audio_stream_t -> stream_language_t (cleanup)
arpi
parents:
3726
diff
changeset
|
253 stream_language_t audio_streams[32]; |
3048 | 254 // subtitles |
255 int nr_of_subtitles; | |
3751
d9d2ee82a243
subtitle_t + audio_stream_t -> stream_language_t (cleanup)
arpi
parents:
3726
diff
changeset
|
256 stream_language_t subtitles[32]; |
2935 | 257 } dvd_priv_t; |
258 | |
3753 | 259 int dvd_aid_from_lang(stream_t *stream, unsigned char* lang); |
260 int dvd_sid_from_lang(stream_t *stream, unsigned char* lang); | |
7854 | 261 int dvd_chapter_from_cell(dvd_priv_t *dvd,int title,int cell); |
3753 | 262 |
2935 | 263 #endif |
264 | |
998
8c83e3ff26cc
Added ifndef to prevent multiple header file inclusion.
bertrand
parents:
692
diff
changeset
|
265 #endif // __STREAM_H |