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