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