Mercurial > mplayer.hg
annotate libmpdemux/stream.h @ 4038:ec0647e73136
portable solution
author | nick |
---|---|
date | Mon, 07 Jan 2002 17:39:50 +0000 |
parents | 3c87dee7a324 |
children | d651a7b5d213 |
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 |
4029
3c87dee7a324
patch for missing include by Steven M. Schultz <sms@2BSD.COM>
pl
parents:
3998
diff
changeset
|
4 #include <inttypes.h> |
3c87dee7a324
patch for missing include by Steven M. Schultz <sms@2BSD.COM>
pl
parents:
3998
diff
changeset
|
5 |
578 | 6 #define STREAM_BUFFER_SIZE 2048 |
7 | |
8 #define STREAMTYPE_FILE 0 | |
9 #define STREAMTYPE_VCD 1 | |
692 | 10 #define STREAMTYPE_STREAM 2 // same as FILE but no seeking (for stdin) |
1594 | 11 #define STREAMTYPE_DVD 3 |
2144 | 12 #define STREAMTYPE_MEMORY 4 |
2790 | 13 #define STREAMTYPE_TV 5 |
578 | 14 |
15 #define VCD_SECTOR_SIZE 2352 | |
16 #define VCD_SECTOR_OFFS 24 | |
17 #define VCD_SECTOR_DATA 2324 | |
18 | |
3043
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
19 #ifdef STREAMING |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
20 #include "network.h" |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
21 #endif |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
22 |
578 | 23 int vcd_seek_to_track(int fd,int track); |
24 void vcd_read_toc(int fd); | |
25 | |
26 #ifdef VCD_CACHE | |
27 void vcd_cache_init(int s); | |
28 #endif | |
29 | |
30 typedef struct { | |
31 int fd; | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
32 off_t pos; |
578 | 33 int eof; |
34 int type; // 0=file 1=VCD | |
35 unsigned int buf_pos,buf_len; | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
36 off_t start_pos,end_pos; |
2322 | 37 unsigned int cache_pid; |
38 void* cache_data; | |
2144 | 39 void* priv; // used for DVD |
583 | 40 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
|
41 #ifdef STREAMING |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
42 streaming_ctrl_t *streaming_ctrl; |
02a43ca97b52
Added a new struct to stream_t to handle, network streaming.
bertrand
parents:
2935
diff
changeset
|
43 #endif |
578 | 44 } stream_t; |
45 | |
2322 | 46 #ifdef USE_STREAM_CACHE |
3600 | 47 void stream_enable_cache(stream_t *stream,int size,int min,int prefill); |
2322 | 48 #else |
49 // no cache | |
50 #define cache_stream_fill_buffer(x) stream_fill_buffer(x) | |
51 #define cache_stream_seek_long(x,y) stream_seek_long(x,y) | |
52 #define stream_enable_cache(x,y) | |
53 #endif | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
54 |
2322 | 55 int cache_stream_fill_buffer(stream_t *s); |
56 int cache_stream_seek_long(stream_t *s,off_t pos); | |
578 | 57 |
3726 | 58 #include <string.h> |
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 | |
85 inline static unsigned int stream_read_word_le(stream_t *s){ | |
86 int x,y; | |
87 x=stream_read_char(s); | |
88 y=stream_read_char(s); | |
89 return (y<<8)|x; | |
90 } | |
91 | |
92 inline static unsigned int stream_read_dword_le(stream_t *s){ | |
93 unsigned int y; | |
94 y=stream_read_char(s); | |
95 y|=stream_read_char(s)<<8; | |
96 y|=stream_read_char(s)<<16; | |
97 y|=stream_read_char(s)<<24; | |
98 return y; | |
99 } | |
100 | |
3998 | 101 inline static uint64_t stream_read_qword(stream_t *s){ |
102 uint64_t y; | |
103 y = stream_read_char(s); | |
104 y=(y<<8)|stream_read_char(s); | |
105 y=(y<<8)|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 return y; | |
112 } | |
113 | |
2347 | 114 inline static int stream_read(stream_t *s,char* mem,int total){ |
115 int len=total; | |
578 | 116 while(len>0){ |
117 int x; | |
118 x=s->buf_len-s->buf_pos; | |
119 if(x==0){ | |
2347 | 120 if(!cache_stream_fill_buffer(s)) return total-len; // EOF |
578 | 121 x=s->buf_len-s->buf_pos; |
122 } | |
123 if(s->buf_pos>s->buf_len) printf("stream_read: WARNING! s->buf_pos>s->buf_len\n"); | |
124 if(x>len) x=len; | |
125 memcpy(mem,&s->buffer[s->buf_pos],x); | |
126 s->buf_pos+=x; mem+=x; len-=x; | |
127 } | |
2347 | 128 return total; |
578 | 129 } |
130 | |
131 inline static int stream_eof(stream_t *s){ | |
132 return s->eof; | |
133 } | |
134 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
135 inline static off_t stream_tell(stream_t *s){ |
578 | 136 return s->pos+s->buf_pos-s->buf_len; |
137 } | |
138 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
139 inline static int stream_seek(stream_t *s,off_t pos){ |
578 | 140 |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
141 // if(verbose>=3) printf("seek to 0x%qX\n",(long long)pos); |
578 | 142 |
143 if(pos<s->pos){ | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
998
diff
changeset
|
144 off_t x=pos-(s->pos-s->buf_len); |
578 | 145 if(x>=0){ |
146 s->buf_pos=x; | |
147 // putchar('*');fflush(stdout); | |
148 return 1; | |
149 } | |
150 } | |
151 | |
2322 | 152 return cache_stream_seek_long(s,pos); |
578 | 153 } |
154 | |
3962 | 155 inline static int stream_skip(stream_t *s,off_t len){ |
692 | 156 if(len<0 || (len>2*STREAM_BUFFER_SIZE && s->type!=STREAMTYPE_STREAM)){ |
578 | 157 // negative or big skip! |
1491 | 158 return stream_seek(s,stream_tell(s)+len); |
578 | 159 } |
160 while(len>0){ | |
161 int x=s->buf_len-s->buf_pos; | |
162 if(x==0){ | |
2322 | 163 if(!cache_stream_fill_buffer(s)) return 0; // EOF |
578 | 164 x=s->buf_len-s->buf_pos; |
165 } | |
166 if(x>len) x=len; | |
167 //memcpy(mem,&s->buf[s->buf_pos],x); | |
168 s->buf_pos+=x; len-=x; | |
169 } | |
1491 | 170 return 1; |
578 | 171 } |
172 | |
173 void stream_reset(stream_t *s); | |
174 stream_t* new_stream(int fd,int type); | |
175 void free_stream(stream_t *s); | |
2144 | 176 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
|
177 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
|
178 |
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
179 //#ifdef USE_DVDREAD |
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
180 extern int dvd_title; |
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
181 extern int dvd_chapter; |
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
182 extern int dvd_angle; |
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2347
diff
changeset
|
183 //#endif |
998
8c83e3ff26cc
Added ifndef to prevent multiple header file inclusion.
bertrand
parents:
692
diff
changeset
|
184 |
2935 | 185 #ifdef USE_DVDREAD |
186 | |
187 #include <dvdread/dvd_reader.h> | |
188 #include <dvdread/ifo_types.h> | |
189 #include <dvdread/ifo_read.h> | |
190 #include <dvdread/nav_read.h> | |
191 | |
192 typedef struct { | |
193 int id; // 0 - 31 mpeg; 128 - 159 ac3; 160 - 191 pcm | |
194 int language; | |
3751
d9d2ee82a243
subtitle_t + audio_stream_t -> stream_language_t (cleanup)
arpi
parents:
3726
diff
changeset
|
195 } stream_language_t; |
3048 | 196 |
197 typedef struct { | |
2935 | 198 dvd_reader_t *dvd; |
199 dvd_file_t *title; | |
200 ifo_handle_t *vmg_file; | |
201 tt_srpt_t *tt_srpt; | |
202 ifo_handle_t *vts_file; | |
203 vts_ptt_srpt_t *vts_ptt_srpt; | |
204 pgc_t *cur_pgc; | |
205 // | |
206 int cur_cell; | |
207 int cur_pack; | |
208 int cell_last_pack; | |
209 // Navi: | |
210 int packs_left; | |
211 dsi_t dsi_pack; | |
212 int angle_seek; | |
213 // audio datas | |
214 int nr_of_channels; | |
3751
d9d2ee82a243
subtitle_t + audio_stream_t -> stream_language_t (cleanup)
arpi
parents:
3726
diff
changeset
|
215 stream_language_t audio_streams[32]; |
3048 | 216 // subtitles |
217 int nr_of_subtitles; | |
3751
d9d2ee82a243
subtitle_t + audio_stream_t -> stream_language_t (cleanup)
arpi
parents:
3726
diff
changeset
|
218 stream_language_t subtitles[32]; |
2935 | 219 } dvd_priv_t; |
220 | |
3753 | 221 int dvd_aid_from_lang(stream_t *stream, unsigned char* lang); |
222 int dvd_sid_from_lang(stream_t *stream, unsigned char* lang); | |
223 | |
2935 | 224 #endif |
225 | |
998
8c83e3ff26cc
Added ifndef to prevent multiple header file inclusion.
bertrand
parents:
692
diff
changeset
|
226 #endif // __STREAM_H |