Mercurial > mplayer.hg
annotate libmpdemux/stream.h @ 7030:660a8439c679
10l
author | michael |
---|---|
date | Fri, 16 Aug 2002 22:39:02 +0000 |
parents | 8f49c75a2824 |
children | 9aca112abac7 |
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" |
4029
3c87dee7a324
patch for missing include by Steven M. Schultz <sms@2BSD.COM>
pl
parents:
3998
diff
changeset
|
5 #include <inttypes.h> |
5292 | 6 #include <sys/types.h> |
4029
3c87dee7a324
patch for missing include by Steven M. Schultz <sms@2BSD.COM>
pl
parents:
3998
diff
changeset
|
7 |
578 | 8 #define STREAM_BUFFER_SIZE 2048 |
9 | |
10 #define STREAMTYPE_FILE 0 | |
11 #define STREAMTYPE_VCD 1 | |
692 | 12 #define STREAMTYPE_STREAM 2 // same as FILE but no seeking (for stdin) |
1594 | 13 #define STREAMTYPE_DVD 3 |
2144 | 14 #define STREAMTYPE_MEMORY 4 |
2790 | 15 #define STREAMTYPE_TV 5 |
4042
d651a7b5d213
STREAMTYPE_PLAYLIST introduced. similar to STREAMTYPE_STREAM but used for playlists. patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4029
diff
changeset
|
16 #define STREAMTYPE_PLAYLIST 6 |
4551 | 17 #define STREAMTYPE_MF 7 |
5133
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
5086
diff
changeset
|
18 #define STREAMTYPE_DS 8 |
5471
348c7d83e710
dvdnav_stream functions - dvdnav patch by Kees Cook <mplayer@outflux.net>
arpi
parents:
5380
diff
changeset
|
19 #define STREAMTYPE_DVDNAV 9 // we cannot safely "seek" in this... |
6384
f0b933918a22
Support for playing audio cds using cdparanoia. Include a raw audio
albeu
parents:
6224
diff
changeset
|
20 #define STREAMTYPE_CDDA 10 |
578 | 21 |
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 #ifdef VCD_CACHE | |
34 void vcd_cache_init(int s); | |
35 #endif | |
36 | |
37 typedef struct { | |
38 int fd; | |
39 int type; // 0=file 1=VCD | |
40 unsigned int buf_pos,buf_len; | |
6224
79b2b4c3c435
off_t fields reordered, to avoid problems due to struct padding
arpi
parents:
5819
diff
changeset
|
41 off_t pos,start_pos,end_pos; |
79b2b4c3c435
off_t fields reordered, to avoid problems due to struct padding
arpi
parents:
5819
diff
changeset
|
42 int eof; |
2322 | 43 unsigned int cache_pid; |
44 void* cache_data; | |
2144 | 45 void* priv; // used for DVD |
583 | 46 unsigned char buffer[STREAM_BUFFER_SIZE>VCD_SECTOR_SIZE?STREAM_BUFFER_SIZE:VCD_SECTOR_SIZE]; |
3043
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
47 #ifdef STREAMING |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
48 streaming_ctrl_t *streaming_ctrl; |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
49 #endif |
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); |
2322 | 54 #else |
55 // no cache | |
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 |
2322 | 61 int cache_stream_fill_buffer(stream_t *s); |
62 int cache_stream_seek_long(stream_t *s,off_t pos); | |
578 | 63 |
3726 | 64 #include <string.h> |
65 | |
578 | 66 inline static int stream_read_char(stream_t *s){ |
67 return (s->buf_pos<s->buf_len)?s->buffer[s->buf_pos++]: | |
2322 | 68 (cache_stream_fill_buffer(s)?s->buffer[s->buf_pos++]:-256); |
578 | 69 // if(s->buf_pos<s->buf_len) return s->buffer[s->buf_pos++]; |
70 // stream_fill_buffer(s); | |
71 // if(s->buf_pos<s->buf_len) return s->buffer[s->buf_pos++]; | |
72 // return 0; // EOF | |
73 } | |
74 | |
75 inline static unsigned int stream_read_word(stream_t *s){ | |
76 int x,y; | |
77 x=stream_read_char(s); | |
78 y=stream_read_char(s); | |
79 return (x<<8)|y; | |
80 } | |
81 | |
82 inline static unsigned int stream_read_dword(stream_t *s){ | |
83 unsigned int y; | |
84 y=stream_read_char(s); | |
85 y=(y<<8)|stream_read_char(s); | |
86 y=(y<<8)|stream_read_char(s); | |
87 y=(y<<8)|stream_read_char(s); | |
88 return y; | |
89 } | |
90 | |
4189 | 91 #define stream_read_fourcc stream_read_dword_le |
92 | |
578 | 93 inline static unsigned int stream_read_word_le(stream_t *s){ |
94 int x,y; | |
95 x=stream_read_char(s); | |
96 y=stream_read_char(s); | |
97 return (y<<8)|x; | |
98 } | |
99 | |
100 inline static unsigned int stream_read_dword_le(stream_t *s){ | |
101 unsigned int y; | |
102 y=stream_read_char(s); | |
103 y|=stream_read_char(s)<<8; | |
104 y|=stream_read_char(s)<<16; | |
105 y|=stream_read_char(s)<<24; | |
106 return y; | |
107 } | |
108 | |
3998 | 109 inline static uint64_t stream_read_qword(stream_t *s){ |
110 uint64_t y; | |
111 y = 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 y=(y<<8)|stream_read_char(s); | |
117 y=(y<<8)|stream_read_char(s); | |
118 y=(y<<8)|stream_read_char(s); | |
119 return y; | |
120 } | |
121 | |
5301 | 122 inline static unsigned int stream_read_int24(stream_t *s){ |
123 unsigned int y; | |
124 y = stream_read_char(s); | |
125 y=(y<<8)|stream_read_char(s); | |
126 y=(y<<8)|stream_read_char(s); | |
127 return y; | |
128 } | |
129 | |
2347 | 130 inline static int stream_read(stream_t *s,char* mem,int total){ |
131 int len=total; | |
578 | 132 while(len>0){ |
133 int x; | |
134 x=s->buf_len-s->buf_pos; | |
135 if(x==0){ | |
2347 | 136 if(!cache_stream_fill_buffer(s)) return total-len; // EOF |
578 | 137 x=s->buf_len-s->buf_pos; |
138 } | |
5086 | 139 if(s->buf_pos>s->buf_len) mp_msg(MSGT_DEMUX, MSGL_WARN, "stream_read: WARNING! s->buf_pos>s->buf_len\n"); |
578 | 140 if(x>len) x=len; |
141 memcpy(mem,&s->buffer[s->buf_pos],x); | |
142 s->buf_pos+=x; mem+=x; len-=x; | |
143 } | |
2347 | 144 return total; |
578 | 145 } |
146 | |
147 inline static int stream_eof(stream_t *s){ | |
148 return s->eof; | |
149 } | |
150 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
151 inline static off_t stream_tell(stream_t *s){ |
578 | 152 return s->pos+s->buf_pos-s->buf_len; |
153 } | |
154 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
155 inline static int stream_seek(stream_t *s,off_t pos){ |
578 | 156 |
5086 | 157 mp_dbg(MSGT_DEMUX, MSGL_DBG3, "seek to 0x%qX\n",(long long)pos); |
578 | 158 |
159 if(pos<s->pos){ | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
160 off_t x=pos-(s->pos-s->buf_len); |
578 | 161 if(x>=0){ |
162 s->buf_pos=x; | |
163 // putchar('*');fflush(stdout); | |
164 return 1; | |
165 } | |
166 } | |
167 | |
2322 | 168 return cache_stream_seek_long(s,pos); |
578 | 169 } |
170 | |
3962 | 171 inline static int stream_skip(stream_t *s,off_t len){ |
692 | 172 if(len<0 || (len>2*STREAM_BUFFER_SIZE && s->type!=STREAMTYPE_STREAM)){ |
578 | 173 // negative or big skip! |
1491 | 174 return stream_seek(s,stream_tell(s)+len); |
578 | 175 } |
176 while(len>0){ | |
177 int x=s->buf_len-s->buf_pos; | |
178 if(x==0){ | |
2322 | 179 if(!cache_stream_fill_buffer(s)) return 0; // EOF |
578 | 180 x=s->buf_len-s->buf_pos; |
181 } | |
182 if(x>len) x=len; | |
183 //memcpy(mem,&s->buf[s->buf_pos],x); | |
184 s->buf_pos+=x; len-=x; | |
185 } | |
1491 | 186 return 1; |
578 | 187 } |
188 | |
189 void stream_reset(stream_t *s); | |
190 stream_t* new_stream(int fd,int type); | |
191 void free_stream(stream_t *s); | |
2144 | 192 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
|
193 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
|
194 |
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
195 //#ifdef USE_DVDREAD |
4407 | 196 struct config; |
2555
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
197 extern int dvd_title; |
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
198 extern int dvd_chapter; |
4291
e889d37f25b2
Add option -last-chapter for DVD playing/encoding
kmkaplan
parents:
4189
diff
changeset
|
199 extern int dvd_last_chapter; |
2555
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
200 extern int dvd_angle; |
5380
8a01cde9cf39
DVDnav support patch by David Holm and Kees Cook <mplayer@outflux.net>
arpi
parents:
5301
diff
changeset
|
201 extern int dvd_nav; |
4343
b0c8eed7473c
Extended DVD chapter specification. Remove -last-chapter option.
kmkaplan
parents:
4315
diff
changeset
|
202 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
|
203 //#endif |
998
8c83e3ff26cc
Added ifndef to prevent multiple header file inclusion.
bertrand
parents:
692
diff
changeset
|
204 |
6623 | 205 extern char * audio_stream; |
206 | |
5471
348c7d83e710
dvdnav_stream functions - dvdnav patch by Kees Cook <mplayer@outflux.net>
arpi
parents:
5380
diff
changeset
|
207 #ifdef USE_DVDNAV |
348c7d83e710
dvdnav_stream functions - dvdnav patch by Kees Cook <mplayer@outflux.net>
arpi
parents:
5380
diff
changeset
|
208 #include "dvdnav_stream.h" |
348c7d83e710
dvdnav_stream functions - dvdnav patch by Kees Cook <mplayer@outflux.net>
arpi
parents:
5380
diff
changeset
|
209 #endif |
348c7d83e710
dvdnav_stream functions - dvdnav patch by Kees Cook <mplayer@outflux.net>
arpi
parents:
5380
diff
changeset
|
210 |
2935 | 211 #ifdef USE_DVDREAD |
212 | |
5819 | 213 #ifdef USE_MPDVDKIT |
214 #include "../libmpdvdkit/dvd_reader.h" | |
215 #include "../libmpdvdkit/ifo_types.h" | |
216 #include "../libmpdvdkit/ifo_read.h" | |
217 #include "../libmpdvdkit/nav_read.h" | |
218 #else | |
2935 | 219 #include <dvdread/dvd_reader.h> |
220 #include <dvdread/ifo_types.h> | |
221 #include <dvdread/ifo_read.h> | |
222 #include <dvdread/nav_read.h> | |
5819 | 223 #endif |
2935 | 224 |
225 typedef struct { | |
226 int id; // 0 - 31 mpeg; 128 - 159 ac3; 160 - 191 pcm | |
227 int language; | |
6651 | 228 int type; |
229 int channels; | |
3751
d9d2ee82a243
subtitle_t + audio_stream_t -> stream_language_t (cleanup)
arpi
parents:
3726
diff
changeset
|
230 } stream_language_t; |
3048 | 231 |
232 typedef struct { | |
2935 | 233 dvd_reader_t *dvd; |
234 dvd_file_t *title; | |
235 ifo_handle_t *vmg_file; | |
236 tt_srpt_t *tt_srpt; | |
237 ifo_handle_t *vts_file; | |
238 vts_ptt_srpt_t *vts_ptt_srpt; | |
239 pgc_t *cur_pgc; | |
240 // | |
241 int cur_cell; | |
4291
e889d37f25b2
Add option -last-chapter for DVD playing/encoding
kmkaplan
parents:
4189
diff
changeset
|
242 int last_cell; |
2935 | 243 int cur_pack; |
244 int cell_last_pack; | |
245 // Navi: | |
246 int packs_left; | |
247 dsi_t dsi_pack; | |
248 int angle_seek; | |
249 // audio datas | |
250 int nr_of_channels; | |
3751
d9d2ee82a243
subtitle_t + audio_stream_t -> stream_language_t (cleanup)
arpi
parents:
3726
diff
changeset
|
251 stream_language_t audio_streams[32]; |
3048 | 252 // subtitles |
253 int nr_of_subtitles; | |
3751
d9d2ee82a243
subtitle_t + audio_stream_t -> stream_language_t (cleanup)
arpi
parents:
3726
diff
changeset
|
254 stream_language_t subtitles[32]; |
2935 | 255 } dvd_priv_t; |
256 | |
3753 | 257 int dvd_aid_from_lang(stream_t *stream, unsigned char* lang); |
258 int dvd_sid_from_lang(stream_t *stream, unsigned char* lang); | |
259 | |
2935 | 260 #endif |
261 | |
998
8c83e3ff26cc
Added ifndef to prevent multiple header file inclusion.
bertrand
parents:
692
diff
changeset
|
262 #endif // __STREAM_H |