Mercurial > mplayer.hg
annotate libmpdemux/stream.c @ 10375:f9a6747a3d47
small clearification for -overlapsub
author | attila |
---|---|
date | Sat, 05 Jul 2003 09:45:42 +0000 |
parents | 54bcbf28698a |
children | 11826d9f90c7 |
rev | line source |
---|---|
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
1 |
1430 | 2 #include <stdio.h> |
3 #include <stdlib.h> | |
4 #include <unistd.h> | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
5 |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
6 #include <sys/types.h> |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
7 #include <sys/stat.h> |
9798 | 8 #ifndef __MINGW32__ |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
9 #include <sys/ioctl.h> |
6814 | 10 #include <sys/wait.h> |
9798 | 11 #endif |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
12 #include <fcntl.h> |
2322 | 13 #include <signal.h> |
9794 | 14 #include <strings.h> |
578 | 15 |
1430 | 16 #include "config.h" |
10281 | 17 |
18 #ifndef HAVE_WINSOCK2 | |
19 #define closesocket close | |
20 #else | |
21 #include <winsock2.h> | |
22 #endif | |
23 | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
24 #include "mp_msg.h" |
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
25 #include "help_mp.h" |
9380 | 26 #include "../osdep/shmem.h" |
578 | 27 |
28 #include "stream.h" | |
5133
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
29 #include "demuxer.h" |
578 | 30 |
9794 | 31 #include "../m_option.h" |
32 #include "../m_struct.h" | |
33 | |
34 | |
578 | 35 extern int verbose; // defined in mplayer.c |
10242 | 36 void cache_uninit(stream_t *s); // defined in cache2.c |
1 | 37 |
8812 | 38 #include "cue_read.h" |
39 | |
40 //#include "vcd_read_bincue.h" | |
8782
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
41 |
1595 | 42 #ifdef USE_DVDREAD |
8344 | 43 int dvd_read_sector(dvd_priv_t *d,unsigned char* data); |
44 void dvd_seek(dvd_priv_t *d,int pos); | |
6814 | 45 void dvd_close(dvd_priv_t *d); |
1595 | 46 #endif |
47 | |
7630
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
48 #ifdef LIBSMBCLIENT |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
49 #include "libsmbclient.h" |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
50 #endif |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
51 |
9886 | 52 #ifdef HAVE_VCD |
53 extern stream_info_t stream_info_vcd; | |
54 #endif | |
9810 | 55 #ifdef HAVE_CDDA |
9801 | 56 extern stream_info_t stream_info_cdda; |
9810 | 57 #endif |
10121
d42177a0da2a
Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents:
9915
diff
changeset
|
58 #ifdef MPLAYER_NETWORK |
9853 | 59 extern stream_info_t stream_info_netstream; |
60 #endif | |
9901
233802490b0e
Add a null streamv Currently used for tv and mf. Could be used to
albeu
parents:
9886
diff
changeset
|
61 extern stream_info_t stream_info_null; |
9794 | 62 extern stream_info_t stream_info_file; |
63 | |
64 stream_info_t* auto_open_streams[] = { | |
9886 | 65 #ifdef HAVE_VCD |
66 &stream_info_vcd, | |
67 #endif | |
9810 | 68 #ifdef HAVE_CDDA |
9801 | 69 &stream_info_cdda, |
9810 | 70 #endif |
10121
d42177a0da2a
Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents:
9915
diff
changeset
|
71 #ifdef MPLAYER_NETWORK |
9853 | 72 &stream_info_netstream, |
73 #endif | |
9901
233802490b0e
Add a null streamv Currently used for tv and mf. Could be used to
albeu
parents:
9886
diff
changeset
|
74 &stream_info_null, |
9794 | 75 &stream_info_file, |
76 NULL | |
77 }; | |
78 | |
79 stream_t* open_stream_plugin(stream_info_t* sinfo,char* filename,int mode, | |
80 char** options, int* file_format, int* ret) { | |
81 void* arg = NULL; | |
82 stream_t* s; | |
83 m_struct_t* desc = (m_struct_t*)sinfo->opts; | |
84 | |
85 // Parse options | |
86 if(desc) { | |
87 arg = m_struct_alloc(desc); | |
88 if(sinfo->opts_url) { | |
89 m_option_t url_opt = | |
90 { "stream url", arg , CONF_TYPE_CUSTOM_URL, 0, 0 ,0, sinfo->opts }; | |
91 if(m_option_parse(&url_opt,"stream url",filename,arg,M_CONFIG_FILE) < 0) { | |
92 mp_msg(MSGT_OPEN,MSGL_ERR, "URL parsing failed on url %s\n",filename); | |
93 m_struct_free(desc,arg); | |
94 return NULL; | |
95 } | |
96 } | |
97 if(options) { | |
98 int i; | |
99 for(i = 0 ; options[i] != NULL ; i += 2) { | |
100 mp_msg(MSGT_OPEN,MSGL_DBG2, "Set stream arg %s=%s\n", | |
101 options[i],options[i+1]); | |
102 if(!m_struct_set(desc,arg,options[i],options[i+1])) | |
103 mp_msg(MSGT_OPEN,MSGL_WARN, "Failed to set stream option %s=%s\n", | |
104 options[i],options[i+1]); | |
105 } | |
106 } | |
107 } | |
108 s = new_stream(-2,-2); | |
109 s->url=strdup(filename); | |
110 s->flags |= mode; | |
111 *ret = sinfo->open(s,mode,arg,file_format); | |
112 if((*ret) != STREAM_OK) { | |
113 free(s->url); | |
114 free(s); | |
115 return NULL; | |
116 } | |
117 if(s->type <= -2) | |
118 mp_msg(MSGT_OPEN,MSGL_WARN, "Warning streams need a type !!!!\n"); | |
119 if(s->flags & STREAM_SEEK && !s->seek) | |
120 s->flags &= ~STREAM_SEEK; | |
121 if(s->seek && !(s->flags & STREAM_SEEK)) | |
9853 | 122 s->flags |= STREAM_SEEK; |
9794 | 123 |
124 | |
125 mp_msg(MSGT_OPEN,MSGL_V, "STREAM: [%s] %s\n",sinfo->name,filename); | |
126 mp_msg(MSGT_OPEN,MSGL_V, "STREAM: Description: %s\n",sinfo->info); | |
127 mp_msg(MSGT_OPEN,MSGL_V, "STREAM: Author: %s\n", sinfo->author); | |
128 mp_msg(MSGT_OPEN,MSGL_V, "STREAM: Comment: %s\n", sinfo->comment); | |
129 | |
130 return s; | |
131 } | |
132 | |
133 | |
134 stream_t* open_stream_full(char* filename,int mode, char** options, int* file_format) { | |
135 int i,j,l,r; | |
136 stream_info_t* sinfo; | |
137 stream_t* s; | |
138 | |
139 for(i = 0 ; auto_open_streams[i] ; i++) { | |
140 sinfo = auto_open_streams[i]; | |
141 if(!sinfo->protocols) { | |
142 mp_msg(MSGT_OPEN,MSGL_WARN, "Stream type %s have protocols == NULL, it's a bug\n"); | |
143 continue; | |
144 } | |
145 for(j = 0 ; sinfo->protocols[j] ; j++) { | |
146 l = strlen(sinfo->protocols[j]); | |
147 // l == 0 => Don't do protocol matching (ie network and filenames) | |
148 if((l == 0) || ((strncmp(sinfo->protocols[j],filename,l) == 0) && | |
149 (strncmp("://",filename+l,3) == 0))) { | |
150 *file_format = DEMUXER_TYPE_UNKNOWN; | |
151 s = open_stream_plugin(sinfo,filename,mode,options,file_format,&r); | |
152 if(s) return s; | |
153 if(r != STREAM_UNSUPORTED) { | |
154 mp_msg(MSGT_OPEN,MSGL_ERR, "Failed to open %s\n",filename); | |
155 return NULL; | |
156 } | |
157 break; | |
158 } | |
159 } | |
160 } | |
161 | |
162 mp_msg(MSGT_OPEN,MSGL_ERR, "No stream found to handle url %s\n",filename); | |
163 return NULL; | |
164 } | |
165 | |
1 | 166 //=================== STREAMER ========================= |
167 | |
168 int stream_fill_buffer(stream_t *s){ | |
169 int len; | |
9874
55a43ae66ceb
Oops, I just noticed albeu's revision 1.58 - so I backed out the
rsf
parents:
9873
diff
changeset
|
170 if (/*s->fd == NULL ||*/ s->eof) { s->buf_pos = s->buf_len = 0; return 0; } |
1 | 171 switch(s->type){ |
7630
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
172 #ifdef LIBSMBCLIENT |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
173 case STREAMTYPE_SMB: |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
174 len=smbc_read(s->fd,s->buffer,STREAM_BUFFER_SIZE); |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
175 break; |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
176 #endif |
692 | 177 case STREAMTYPE_STREAM: |
10121
d42177a0da2a
Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents:
9915
diff
changeset
|
178 #ifdef MPLAYER_NETWORK |
3044
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
179 if( s->streaming_ctrl!=NULL ) { |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
180 len=s->streaming_ctrl->streaming_read(s->fd,s->buffer,STREAM_BUFFER_SIZE, s->streaming_ctrl);break; |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
181 } else { |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
182 len=read(s->fd,s->buffer,STREAM_BUFFER_SIZE);break; |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
183 } |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
184 #else |
1 | 185 len=read(s->fd,s->buffer,STREAM_BUFFER_SIZE);break; |
3044
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
186 #endif |
8782
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
187 case STREAMTYPE_VCDBINCUE: |
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
188 len=cue_vcd_read(s->buffer);break; |
5380
8a01cde9cf39
DVDnav support patch by David Holm and Kees Cook <mplayer@outflux.net>
arpi
parents:
5133
diff
changeset
|
189 #ifdef USE_DVDNAV |
8a01cde9cf39
DVDnav support patch by David Holm and Kees Cook <mplayer@outflux.net>
arpi
parents:
5133
diff
changeset
|
190 case STREAMTYPE_DVDNAV: { |
5472 | 191 dvdnav_stream_read((dvdnav_priv_t*)s->priv,s->buffer,&len); |
192 if (len==0) return 0; // this was an event, so repeat the read | |
5380
8a01cde9cf39
DVDnav support patch by David Holm and Kees Cook <mplayer@outflux.net>
arpi
parents:
5133
diff
changeset
|
193 break; |
8a01cde9cf39
DVDnav support patch by David Holm and Kees Cook <mplayer@outflux.net>
arpi
parents:
5133
diff
changeset
|
194 } |
8a01cde9cf39
DVDnav support patch by David Holm and Kees Cook <mplayer@outflux.net>
arpi
parents:
5133
diff
changeset
|
195 #endif |
1595 | 196 #ifdef USE_DVDREAD |
197 case STREAMTYPE_DVD: { | |
198 off_t pos=dvd_read_sector(s->priv,s->buffer); | |
199 if(pos>=0){ | |
200 len=2048; // full sector | |
201 s->pos=2048*pos-len; | |
202 } else len=-1; // error | |
203 break; | |
204 } | |
205 #endif | |
5133
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
206 case STREAMTYPE_DS: |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
207 len = demux_read_data((demux_stream_t*)s->priv,s->buffer,STREAM_BUFFER_SIZE); |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
208 break; |
9610 | 209 |
210 #ifdef HAS_DVBIN_SUPPORT | |
211 case STREAMTYPE_DVB: | |
212 len = dvb_streaming_read(s->fd, s->buffer, STREAM_BUFFER_SIZE, s->priv); | |
213 break; | |
214 #endif | |
215 | |
216 | |
217 | |
9794 | 218 default: |
219 len= s->fill_buffer ? s->fill_buffer(s,s->buffer,STREAM_BUFFER_SIZE) : 0; | |
1 | 220 } |
221 if(len<=0){ s->eof=1; s->buf_pos=s->buf_len=0; return 0; } | |
222 s->buf_pos=0; | |
223 s->buf_len=len; | |
224 s->pos+=len; | |
225 // printf("[%d]",len);fflush(stdout); | |
226 return len; | |
227 } | |
228 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
229 int stream_seek_long(stream_t *s,off_t pos){ |
6814 | 230 off_t newpos=0; |
1 | 231 |
2144 | 232 // if(verbose>=3) printf("seek_long to 0x%X\n",(unsigned int)pos); |
1 | 233 |
234 s->buf_pos=s->buf_len=0; | |
235 | |
236 switch(s->type){ | |
7630
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
237 case STREAMTYPE_SMB: |
692 | 238 case STREAMTYPE_STREAM: |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
239 #ifdef _LARGEFILE_SOURCE |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
240 newpos=pos&(~((long long)STREAM_BUFFER_SIZE-1));break; |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
241 #else |
492 | 242 newpos=pos&(~(STREAM_BUFFER_SIZE-1));break; |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
243 #endif |
8782
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
244 case STREAMTYPE_VCDBINCUE: |
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
245 newpos=(pos/VCD_SECTOR_DATA)*VCD_SECTOR_DATA;break; |
1595 | 246 case STREAMTYPE_DVD: |
247 newpos=pos/2048; newpos*=2048; break; | |
9794 | 248 default: |
249 // Round on sector size | |
250 if(s->sector_size) | |
251 newpos=(pos/s->sector_size)*s->sector_size; | |
252 else { // Otherwise on the buffer size | |
253 #ifdef _LARGEFILE_SOURCE | |
254 newpos=pos&(~((long long)STREAM_BUFFER_SIZE-1));break; | |
255 #else | |
256 newpos=pos&(~(STREAM_BUFFER_SIZE-1));break; | |
257 #endif | |
258 } | |
259 break; | |
1 | 260 } |
261 | |
2050 | 262 if(verbose>=3){ |
263 #ifdef _LARGEFILE_SOURCE | |
264 printf("s->pos=%llX newpos=%llX new_bufpos=%llX buflen=%X \n", | |
265 (long long)s->pos,(long long)newpos,(long long)pos,s->buf_len); | |
266 #else | |
267 printf("s->pos=%X newpos=%X new_bufpos=%X buflen=%X \n", | |
268 (unsigned int)s->pos,newpos,pos,s->buf_len); | |
269 #endif | |
270 } | |
271 | |
1 | 272 pos-=newpos; |
273 | |
274 if(newpos==0 || newpos!=s->pos){ | |
275 switch(s->type){ | |
7630
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
276 #ifdef LIBSMBCLIENT |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
277 case STREAMTYPE_SMB: |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
278 s->pos=newpos; // real seek |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
279 if(smbc_lseek(s->fd,s->pos,SEEK_SET)<0) s->eof=1; |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
280 break; |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
281 #endif |
8782
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
282 case STREAMTYPE_VCDBINCUE: |
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
283 s->pos=newpos; // real seek |
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
284 cue_set_msf(s->pos/VCD_SECTOR_DATA); |
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
285 break; |
5472 | 286 #ifdef USE_DVDNAV |
287 case STREAMTYPE_DVDNAV: { | |
288 if (newpos==0) { | |
289 if (dvdnav_stream_reset((dvdnav_priv_t*)s->priv)) | |
290 s->pos=0; | |
291 } | |
292 if(newpos!=s->pos){ | |
293 mp_msg(MSGT_STREAM,MSGL_INFO,"Cannot seek in DVDNAV streams yet!\n"); | |
294 return 1; | |
295 } | |
296 break; | |
297 } | |
298 #endif | |
1595 | 299 #ifdef USE_DVDREAD |
300 case STREAMTYPE_DVD: | |
301 s->pos=newpos; // real seek | |
302 dvd_seek(s->priv,s->pos/2048); | |
303 break; | |
304 #endif | |
692 | 305 case STREAMTYPE_STREAM: |
306 //s->pos=newpos; // real seek | |
3044
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
307 // Some streaming protocol allow to seek backward and forward |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
308 // A function call that return -1 can tell that the protocol |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
309 // doesn't support seeking. |
10121
d42177a0da2a
Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents:
9915
diff
changeset
|
310 #ifdef MPLAYER_NETWORK |
8929
c5ca1ae42555
check if seeking supported, otherwise fallback to null reading
arpi
parents:
8812
diff
changeset
|
311 if( s->streaming_ctrl!=NULL && s->streaming_ctrl->streaming_seek ) { |
3044
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
312 if( s->streaming_ctrl->streaming_seek( s->fd, pos, s->streaming_ctrl )<0 ) { |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
313 mp_msg(MSGT_STREAM,MSGL_INFO,"Stream not seekable!\n"); |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
314 return 1; |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
315 } |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
316 } |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
317 #else |
692 | 318 if(newpos<s->pos){ |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
319 mp_msg(MSGT_STREAM,MSGL_INFO,"Cannot seek backward in linear streams!\n"); |
692 | 320 return 1; |
321 } | |
322 while(s->pos<newpos){ | |
323 if(stream_fill_buffer(s)<=0) break; // EOF | |
324 } | |
3044
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
325 #endif |
692 | 326 break; |
7408 | 327 default: |
9794 | 328 // This should at the beginning as soon as all streams are converted |
329 if(!s->seek) | |
330 return 0; | |
331 // Now seek | |
332 if(!s->seek(s,newpos)) { | |
333 mp_msg(MSGT_STREAM,MSGL_ERR, "Seek failed\n"); | |
334 return 0; | |
335 } | |
1 | 336 } |
337 // putchar('.');fflush(stdout); | |
338 //} else { | |
339 // putchar('%');fflush(stdout); | |
340 } | |
341 | |
342 stream_fill_buffer(s); | |
1999 | 343 if(pos>=0 && pos<=s->buf_len){ |
1 | 344 s->buf_pos=pos; // byte position in sector |
345 return 1; | |
346 } | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
347 |
1999 | 348 // if(pos==s->buf_len) printf("XXX Seek to last byte of file -> EOF\n"); |
349 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
350 #ifdef _LARGEFILE_SOURCE |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
351 mp_msg(MSGT_STREAM,MSGL_V,"stream_seek: WARNING! Can't seek to 0x%llX !\n",(long long)(pos+newpos)); |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
352 #else |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
353 mp_msg(MSGT_STREAM,MSGL_V,"stream_seek: WARNING! Can't seek to 0x%X !\n",(pos+newpos)); |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
354 #endif |
1 | 355 return 0; |
356 } | |
357 | |
358 | |
359 void stream_reset(stream_t *s){ | |
360 if(s->eof){ | |
361 s->pos=0; //ftell(f); | |
362 // s->buf_pos=s->buf_len=0; | |
363 s->eof=0; | |
364 } | |
9853 | 365 if(s->control) s->control(s,STREAM_CTRL_RESET,NULL); |
1 | 366 //stream_seek(s,0); |
367 } | |
368 | |
2144 | 369 stream_t* new_memory_stream(unsigned char* data,int len){ |
370 stream_t *s=malloc(sizeof(stream_t)+len); | |
6892
b8e0b1c54940
10000l - didn't clear new stream struct, causing possible sig11 in cache layer
arpi
parents:
6814
diff
changeset
|
371 memset(s,0,sizeof(stream_t)); |
2144 | 372 s->fd=-1; |
373 s->type=STREAMTYPE_MEMORY; | |
374 s->buf_pos=0; s->buf_len=len; | |
375 s->start_pos=0; s->end_pos=len; | |
376 stream_reset(s); | |
377 s->pos=len; | |
378 memcpy(s->buffer,data,len); | |
379 return s; | |
380 } | |
381 | |
1 | 382 stream_t* new_stream(int fd,int type){ |
383 stream_t *s=malloc(sizeof(stream_t)); | |
3291 | 384 if(s==NULL) return NULL; |
385 memset(s,0,sizeof(stream_t)); | |
10281 | 386 |
387 #ifdef HAVE_WINSOCK2 | |
388 { | |
389 WSADATA wsdata; | |
390 int temp = WSAStartup(0x0202, &wsdata); // there might be a better place for this (-> later) | |
391 mp_msg(MSGT_STREAM,MSGL_V,"WINSOCK2 init: %i\n", temp); | |
392 } | |
393 #endif | |
3291 | 394 |
1 | 395 s->fd=fd; |
396 s->type=type; | |
180 | 397 s->buf_pos=s->buf_len=0; |
598 | 398 s->start_pos=s->end_pos=0; |
1642 | 399 s->priv=NULL; |
7407 | 400 s->url=NULL; |
2322 | 401 s->cache_pid=0; |
1 | 402 stream_reset(s); |
403 return s; | |
404 } | |
405 | |
406 void free_stream(stream_t *s){ | |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
5982
diff
changeset
|
407 // printf("\n*** free_stream() called ***\n"); |
9798 | 408 #ifdef USE_STREAM_CACHE |
4893 | 409 if(s->cache_pid) { |
9915 | 410 cache_uninit(s); |
4893 | 411 } |
9798 | 412 #endif |
6479 | 413 switch(s->type) { |
7630
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
414 #ifdef LIBSMBCLIENT |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
415 case STREAMTYPE_SMB: |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
416 smbc_close(s->fd); |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
417 break; |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
418 #endif |
9610 | 419 #ifdef HAS_DVBIN_SUPPORT |
420 case STREAMTYPE_DVB: | |
421 dvbin_close(s->priv); | |
422 break; | |
423 #endif | |
424 | |
6479 | 425 #ifdef USE_DVDREAD |
426 case STREAMTYPE_DVD: | |
427 dvd_close(s->priv); | |
428 #endif | |
9794 | 429 default: |
430 if(s->close) s->close(s); | |
431 } | |
10281 | 432 if(s->fd>0) closesocket(s->fd); |
433 #ifdef HAVE_WINSOCK2 | |
434 mp_msg(MSGT_STREAM,MSGL_V,"WINSOCK2 uninit\n"); | |
435 WSACleanup(); // there might be a better place for this (-> later) | |
436 #endif | |
9794 | 437 // Disabled atm, i don't like that. s->priv can be anything after all |
438 // streams should destroy their priv on close | |
439 //if(s->priv) free(s->priv); | |
440 if(s->url) free(s->url); | |
1 | 441 free(s); |
442 } | |
443 | |
5133
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
444 stream_t* new_ds_stream(demux_stream_t *ds) { |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
445 stream_t* s = new_stream(-1,STREAMTYPE_DS); |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
446 s->priv = ds; |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
447 return s; |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
448 } |