Mercurial > mplayer.hg
annotate libmpdemux/stream.h @ 5289:d3b889d54a7a
more ugly hack
author | arpi |
---|---|
date | Sat, 23 Mar 2002 21:35:03 +0000 |
parents | 9841a86d66f9 |
children | 1863e0c6af59 |
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> |
3c87dee7a324
patch for missing include by Steven M. Schultz <sms@2BSD.COM>
pl
parents:
3998
diff
changeset
|
6 |
578 | 7 #define STREAM_BUFFER_SIZE 2048 |
8 | |
9 #define STREAMTYPE_FILE 0 | |
10 #define STREAMTYPE_VCD 1 | |
692 | 11 #define STREAMTYPE_STREAM 2 // same as FILE but no seeking (for stdin) |
1594 | 12 #define STREAMTYPE_DVD 3 |
2144 | 13 #define STREAMTYPE_MEMORY 4 |
2790 | 14 #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
|
15 #define STREAMTYPE_PLAYLIST 6 |
4551 | 16 #define STREAMTYPE_MF 7 |
5133
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
5086
diff
changeset
|
17 #define STREAMTYPE_DS 8 |
578 | 18 |
19 #define VCD_SECTOR_SIZE 2352 | |
20 #define VCD_SECTOR_OFFS 24 | |
21 #define VCD_SECTOR_DATA 2324 | |
22 | |
3043
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
23 #ifdef STREAMING |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
24 #include "network.h" |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
25 #endif |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
26 |
578 | 27 int vcd_seek_to_track(int fd,int track); |
28 void vcd_read_toc(int fd); | |
29 | |
30 #ifdef VCD_CACHE | |
31 void vcd_cache_init(int s); | |
32 #endif | |
33 | |
34 typedef struct { | |
35 int fd; | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
36 off_t pos; |
578 | 37 int eof; |
38 int type; // 0=file 1=VCD | |
39 unsigned int buf_pos,buf_len; | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
40 off_t start_pos,end_pos; |
2322 | 41 unsigned int cache_pid; |
42 void* cache_data; | |
2144 | 43 void* priv; // used for DVD |
583 | 44 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
|
45 #ifdef STREAMING |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
46 streaming_ctrl_t *streaming_ctrl; |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
47 #endif |
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); |
2322 | 52 #else |
53 // no cache | |
54 #define cache_stream_fill_buffer(x) stream_fill_buffer(x) | |
55 #define cache_stream_seek_long(x,y) stream_seek_long(x,y) | |
4825
41d2da3bd082
Make blocking call in libmpdemux interuptable (only with new input,
albeu
parents:
4551
diff
changeset
|
56 #define stream_enable_cache(x,y) 1 |
2322 | 57 #endif |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
58 |
2322 | 59 int cache_stream_fill_buffer(stream_t *s); |
60 int cache_stream_seek_long(stream_t *s,off_t pos); | |
578 | 61 |
3726 | 62 #include <string.h> |
63 | |
578 | 64 inline static int stream_read_char(stream_t *s){ |
65 return (s->buf_pos<s->buf_len)?s->buffer[s->buf_pos++]: | |
2322 | 66 (cache_stream_fill_buffer(s)?s->buffer[s->buf_pos++]:-256); |
578 | 67 // if(s->buf_pos<s->buf_len) return s->buffer[s->buf_pos++]; |
68 // stream_fill_buffer(s); | |
69 // if(s->buf_pos<s->buf_len) return s->buffer[s->buf_pos++]; | |
70 // return 0; // EOF | |
71 } | |
72 | |
73 inline static unsigned int stream_read_word(stream_t *s){ | |
74 int x,y; | |
75 x=stream_read_char(s); | |
76 y=stream_read_char(s); | |
77 return (x<<8)|y; | |
78 } | |
79 | |
80 inline static unsigned int stream_read_dword(stream_t *s){ | |
81 unsigned int y; | |
82 y=stream_read_char(s); | |
83 y=(y<<8)|stream_read_char(s); | |
84 y=(y<<8)|stream_read_char(s); | |
85 y=(y<<8)|stream_read_char(s); | |
86 return y; | |
87 } | |
88 | |
4189 | 89 #define stream_read_fourcc stream_read_dword_le |
90 | |
578 | 91 inline static unsigned int stream_read_word_le(stream_t *s){ |
92 int x,y; | |
93 x=stream_read_char(s); | |
94 y=stream_read_char(s); | |
95 return (y<<8)|x; | |
96 } | |
97 | |
98 inline static unsigned int stream_read_dword_le(stream_t *s){ | |
99 unsigned int y; | |
100 y=stream_read_char(s); | |
101 y|=stream_read_char(s)<<8; | |
102 y|=stream_read_char(s)<<16; | |
103 y|=stream_read_char(s)<<24; | |
104 return y; | |
105 } | |
106 | |
3998 | 107 inline static uint64_t stream_read_qword(stream_t *s){ |
108 uint64_t y; | |
109 y = 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 y=(y<<8)|stream_read_char(s); | |
117 return y; | |
118 } | |
119 | |
2347 | 120 inline static int stream_read(stream_t *s,char* mem,int total){ |
121 int len=total; | |
578 | 122 while(len>0){ |
123 int x; | |
124 x=s->buf_len-s->buf_pos; | |
125 if(x==0){ | |
2347 | 126 if(!cache_stream_fill_buffer(s)) return total-len; // EOF |
578 | 127 x=s->buf_len-s->buf_pos; |
128 } | |
5086 | 129 if(s->buf_pos>s->buf_len) mp_msg(MSGT_DEMUX, MSGL_WARN, "stream_read: WARNING! s->buf_pos>s->buf_len\n"); |
578 | 130 if(x>len) x=len; |
131 memcpy(mem,&s->buffer[s->buf_pos],x); | |
132 s->buf_pos+=x; mem+=x; len-=x; | |
133 } | |
2347 | 134 return total; |
578 | 135 } |
136 | |
137 inline static int stream_eof(stream_t *s){ | |
138 return s->eof; | |
139 } | |
140 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
141 inline static off_t stream_tell(stream_t *s){ |
578 | 142 return s->pos+s->buf_pos-s->buf_len; |
143 } | |
144 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
145 inline static int stream_seek(stream_t *s,off_t pos){ |
578 | 146 |
5086 | 147 mp_dbg(MSGT_DEMUX, MSGL_DBG3, "seek to 0x%qX\n",(long long)pos); |
578 | 148 |
149 if(pos<s->pos){ | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
150 off_t x=pos-(s->pos-s->buf_len); |
578 | 151 if(x>=0){ |
152 s->buf_pos=x; | |
153 // putchar('*');fflush(stdout); | |
154 return 1; | |
155 } | |
156 } | |
157 | |
2322 | 158 return cache_stream_seek_long(s,pos); |
578 | 159 } |
160 | |
3962 | 161 inline static int stream_skip(stream_t *s,off_t len){ |
692 | 162 if(len<0 || (len>2*STREAM_BUFFER_SIZE && s->type!=STREAMTYPE_STREAM)){ |
578 | 163 // negative or big skip! |
1491 | 164 return stream_seek(s,stream_tell(s)+len); |
578 | 165 } |
166 while(len>0){ | |
167 int x=s->buf_len-s->buf_pos; | |
168 if(x==0){ | |
2322 | 169 if(!cache_stream_fill_buffer(s)) return 0; // EOF |
578 | 170 x=s->buf_len-s->buf_pos; |
171 } | |
172 if(x>len) x=len; | |
173 //memcpy(mem,&s->buf[s->buf_pos],x); | |
174 s->buf_pos+=x; len-=x; | |
175 } | |
1491 | 176 return 1; |
578 | 177 } |
178 | |
179 void stream_reset(stream_t *s); | |
180 stream_t* new_stream(int fd,int type); | |
181 void free_stream(stream_t *s); | |
2144 | 182 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
|
183 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
|
184 |
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
185 //#ifdef USE_DVDREAD |
4407 | 186 struct config; |
2555
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
187 extern int dvd_title; |
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
188 extern int dvd_chapter; |
4291
e889d37f25b2
Add option -last-chapter for DVD playing/encoding
kmkaplan
parents:
4189
diff
changeset
|
189 extern int dvd_last_chapter; |
2555
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
190 extern int dvd_angle; |
4343
b0c8eed7473c
Extended DVD chapter specification. Remove -last-chapter option.
kmkaplan
parents:
4315
diff
changeset
|
191 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
|
192 //#endif |
998
8c83e3ff26cc
Added ifndef to prevent multiple header file inclusion.
bertrand
parents:
692
diff
changeset
|
193 |
2935 | 194 #ifdef USE_DVDREAD |
195 | |
196 #include <dvdread/dvd_reader.h> | |
197 #include <dvdread/ifo_types.h> | |
198 #include <dvdread/ifo_read.h> | |
199 #include <dvdread/nav_read.h> | |
200 | |
201 typedef struct { | |
202 int id; // 0 - 31 mpeg; 128 - 159 ac3; 160 - 191 pcm | |
203 int language; | |
3751
d9d2ee82a243
subtitle_t + audio_stream_t -> stream_language_t (cleanup)
arpi
parents:
3726
diff
changeset
|
204 } stream_language_t; |
3048 | 205 |
206 typedef struct { | |
2935 | 207 dvd_reader_t *dvd; |
208 dvd_file_t *title; | |
209 ifo_handle_t *vmg_file; | |
210 tt_srpt_t *tt_srpt; | |
211 ifo_handle_t *vts_file; | |
212 vts_ptt_srpt_t *vts_ptt_srpt; | |
213 pgc_t *cur_pgc; | |
214 // | |
215 int cur_cell; | |
4291
e889d37f25b2
Add option -last-chapter for DVD playing/encoding
kmkaplan
parents:
4189
diff
changeset
|
216 int last_cell; |
2935 | 217 int cur_pack; |
218 int cell_last_pack; | |
219 // Navi: | |
220 int packs_left; | |
221 dsi_t dsi_pack; | |
222 int angle_seek; | |
223 // audio datas | |
224 int nr_of_channels; | |
3751
d9d2ee82a243
subtitle_t + audio_stream_t -> stream_language_t (cleanup)
arpi
parents:
3726
diff
changeset
|
225 stream_language_t audio_streams[32]; |
3048 | 226 // subtitles |
227 int nr_of_subtitles; | |
3751
d9d2ee82a243
subtitle_t + audio_stream_t -> stream_language_t (cleanup)
arpi
parents:
3726
diff
changeset
|
228 stream_language_t subtitles[32]; |
2935 | 229 } dvd_priv_t; |
230 | |
3753 | 231 int dvd_aid_from_lang(stream_t *stream, unsigned char* lang); |
232 int dvd_sid_from_lang(stream_t *stream, unsigned char* lang); | |
233 | |
2935 | 234 #endif |
235 | |
998
8c83e3ff26cc
Added ifndef to prevent multiple header file inclusion.
bertrand
parents:
692
diff
changeset
|
236 #endif // __STREAM_H |