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