Mercurial > mplayer.hg
annotate stream/stream.c @ 19753:9127ccdcf4af
Remove useless extern declaration of nortc which is a static variable in
mplayer.c.
author | uau |
---|---|
date | Fri, 08 Sep 2006 22:04:45 +0000 |
parents | bd821fd3e244 |
children | 5385740067a1 |
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" |
17012 | 26 #include "osdep/shmem.h" |
578 | 27 |
28 #include "stream.h" | |
19312
ab8d6b6deb63
proper inclusion of demuxer.h (including libmpdemux in Makefile only was to make previous split easier)
ben
parents:
19301
diff
changeset
|
29 #include "libmpdemux/demuxer.h" |
578 | 30 |
17012 | 31 #include "m_option.h" |
32 #include "m_struct.h" | |
9794 | 33 |
34 | |
10242 | 35 void cache_uninit(stream_t *s); // defined in cache2.c |
1 | 36 |
8812 | 37 //#include "vcd_read_bincue.h" |
8782
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
38 |
9886 | 39 #ifdef HAVE_VCD |
40 extern stream_info_t stream_info_vcd; | |
41 #endif | |
9810 | 42 #ifdef HAVE_CDDA |
9801 | 43 extern stream_info_t stream_info_cdda; |
9810 | 44 #endif |
10121
d42177a0da2a
Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents:
9915
diff
changeset
|
45 #ifdef MPLAYER_NETWORK |
9853 | 46 extern stream_info_t stream_info_netstream; |
15585 | 47 extern stream_info_t stream_info_pnm; |
48 extern stream_info_t stream_info_asf; | |
49 extern stream_info_t stream_info_rtsp; | |
19313
0792ad01e9bf
split rtp stack, udp input layer and rtp input layer from rtp.c
ben
parents:
19312
diff
changeset
|
50 extern stream_info_t stream_info_rtp; |
0792ad01e9bf
split rtp stack, udp input layer and rtp input layer from rtp.c
ben
parents:
19312
diff
changeset
|
51 extern stream_info_t stream_info_udp; |
15585 | 52 extern stream_info_t stream_info_http1; |
53 extern stream_info_t stream_info_http2; | |
9853 | 54 #endif |
10560 | 55 #ifdef HAS_DVBIN_SUPPORT |
56 extern stream_info_t stream_info_dvb; | |
57 #endif | |
19273
11ec1cb3a7ea
add an explicit tv stream input instead of the previous hack in stream_null
ben
parents:
19271
diff
changeset
|
58 #ifdef USE_TV |
11ec1cb3a7ea
add an explicit tv stream input instead of the previous hack in stream_null
ben
parents:
19271
diff
changeset
|
59 extern stream_info_t stream_info_tv; |
11ec1cb3a7ea
add an explicit tv stream input instead of the previous hack in stream_null
ben
parents:
19271
diff
changeset
|
60 #endif |
19568
bd821fd3e244
Radio support, patch by Vladimir Voroshilov (voroshil gmail com)
reimar
parents:
19313
diff
changeset
|
61 #ifdef USE_RADIO |
bd821fd3e244
Radio support, patch by Vladimir Voroshilov (voroshil gmail com)
reimar
parents:
19313
diff
changeset
|
62 extern stream_info_t stream_info_radio; |
bd821fd3e244
Radio support, patch by Vladimir Voroshilov (voroshil gmail com)
reimar
parents:
19313
diff
changeset
|
63 #endif |
18997 | 64 #ifdef HAVE_PVR |
65 extern stream_info_t stream_info_pvr; | |
66 #endif | |
10625
620cc649f519
ftp support. The change on connect2Server is needed bcs we need 2
albeu
parents:
10560
diff
changeset
|
67 #ifdef HAVE_FTP |
620cc649f519
ftp support. The change on connect2Server is needed bcs we need 2
albeu
parents:
10560
diff
changeset
|
68 extern stream_info_t stream_info_ftp; |
620cc649f519
ftp support. The change on connect2Server is needed bcs we need 2
albeu
parents:
10560
diff
changeset
|
69 #endif |
14836
8b9738526dd7
added a stream module for the vstream client library
joey
parents:
12018
diff
changeset
|
70 #ifdef HAVE_VSTREAM |
8b9738526dd7
added a stream module for the vstream client library
joey
parents:
12018
diff
changeset
|
71 extern stream_info_t stream_info_vstream; |
8b9738526dd7
added a stream module for the vstream client library
joey
parents:
12018
diff
changeset
|
72 #endif |
15518 | 73 #ifdef USE_DVDNAV |
74 extern stream_info_t stream_info_dvdnav; | |
75 #endif | |
15520 | 76 #ifdef LIBSMBCLIENT |
77 extern stream_info_t stream_info_smb; | |
78 #endif | |
16572
56a5f69e9b35
"LIVE.COM Streaming Media" is now called "LIVE555 Streaming Media".
rsf
parents:
15585
diff
changeset
|
79 #ifdef STREAMING_LIVE555 |
15585 | 80 extern stream_info_t stream_info_sdp; |
81 extern stream_info_t stream_info_rtsp_sip; | |
16762 | 82 #endif |
10560 | 83 |
15476
5eb4994a691f
ported cue:// to the new stream api; note: this stream must still be optimized in its read() and seek() functions
nicodvb
parents:
15421
diff
changeset
|
84 extern stream_info_t stream_info_cue; |
9901
233802490b0e
Add a null streamv Currently used for tv and mf. Could be used to
albeu
parents:
9886
diff
changeset
|
85 extern stream_info_t stream_info_null; |
19301 | 86 extern stream_info_t stream_info_mf; |
9794 | 87 extern stream_info_t stream_info_file; |
17191
6ac0b5f0d1ed
fix compilation when dvdkit and dvdread are not available
nicodvb
parents:
17012
diff
changeset
|
88 #ifdef HAVE_DVD |
15518 | 89 extern stream_info_t stream_info_dvd; |
17191
6ac0b5f0d1ed
fix compilation when dvdkit and dvdread are not available
nicodvb
parents:
17012
diff
changeset
|
90 #endif |
9794 | 91 |
92 stream_info_t* auto_open_streams[] = { | |
9886 | 93 #ifdef HAVE_VCD |
94 &stream_info_vcd, | |
95 #endif | |
9810 | 96 #ifdef HAVE_CDDA |
9801 | 97 &stream_info_cdda, |
9810 | 98 #endif |
10121
d42177a0da2a
Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents:
9915
diff
changeset
|
99 #ifdef MPLAYER_NETWORK |
9853 | 100 &stream_info_netstream, |
15585 | 101 &stream_info_http1, |
102 &stream_info_asf, | |
103 &stream_info_pnm, | |
104 &stream_info_rtsp, | |
16572
56a5f69e9b35
"LIVE.COM Streaming Media" is now called "LIVE555 Streaming Media".
rsf
parents:
15585
diff
changeset
|
105 #ifdef STREAMING_LIVE555 |
15585 | 106 &stream_info_sdp, |
107 &stream_info_rtsp_sip, | |
108 #endif | |
19313
0792ad01e9bf
split rtp stack, udp input layer and rtp input layer from rtp.c
ben
parents:
19312
diff
changeset
|
109 &stream_info_rtp, |
0792ad01e9bf
split rtp stack, udp input layer and rtp input layer from rtp.c
ben
parents:
19312
diff
changeset
|
110 &stream_info_udp, |
15585 | 111 &stream_info_http2, |
9853 | 112 #endif |
10560 | 113 #ifdef HAS_DVBIN_SUPPORT |
114 &stream_info_dvb, | |
115 #endif | |
19273
11ec1cb3a7ea
add an explicit tv stream input instead of the previous hack in stream_null
ben
parents:
19271
diff
changeset
|
116 #ifdef USE_TV |
11ec1cb3a7ea
add an explicit tv stream input instead of the previous hack in stream_null
ben
parents:
19271
diff
changeset
|
117 &stream_info_tv, |
11ec1cb3a7ea
add an explicit tv stream input instead of the previous hack in stream_null
ben
parents:
19271
diff
changeset
|
118 #endif |
19568
bd821fd3e244
Radio support, patch by Vladimir Voroshilov (voroshil gmail com)
reimar
parents:
19313
diff
changeset
|
119 #ifdef USE_RADIO |
bd821fd3e244
Radio support, patch by Vladimir Voroshilov (voroshil gmail com)
reimar
parents:
19313
diff
changeset
|
120 &stream_info_radio, |
bd821fd3e244
Radio support, patch by Vladimir Voroshilov (voroshil gmail com)
reimar
parents:
19313
diff
changeset
|
121 #endif |
18997 | 122 #ifdef HAVE_PVR |
123 &stream_info_pvr, | |
124 #endif | |
10625
620cc649f519
ftp support. The change on connect2Server is needed bcs we need 2
albeu
parents:
10560
diff
changeset
|
125 #ifdef HAVE_FTP |
620cc649f519
ftp support. The change on connect2Server is needed bcs we need 2
albeu
parents:
10560
diff
changeset
|
126 &stream_info_ftp, |
620cc649f519
ftp support. The change on connect2Server is needed bcs we need 2
albeu
parents:
10560
diff
changeset
|
127 #endif |
14836
8b9738526dd7
added a stream module for the vstream client library
joey
parents:
12018
diff
changeset
|
128 #ifdef HAVE_VSTREAM |
8b9738526dd7
added a stream module for the vstream client library
joey
parents:
12018
diff
changeset
|
129 &stream_info_vstream, |
8b9738526dd7
added a stream module for the vstream client library
joey
parents:
12018
diff
changeset
|
130 #endif |
15520 | 131 #ifdef LIBSMBCLIENT |
132 &stream_info_smb, | |
133 #endif | |
15476
5eb4994a691f
ported cue:// to the new stream api; note: this stream must still be optimized in its read() and seek() functions
nicodvb
parents:
15421
diff
changeset
|
134 &stream_info_cue, |
17191
6ac0b5f0d1ed
fix compilation when dvdkit and dvdread are not available
nicodvb
parents:
17012
diff
changeset
|
135 #ifdef HAVE_DVD |
15518 | 136 &stream_info_dvd, |
17191
6ac0b5f0d1ed
fix compilation when dvdkit and dvdread are not available
nicodvb
parents:
17012
diff
changeset
|
137 #endif |
15518 | 138 #ifdef USE_DVDNAV |
18712
cb7da1894b00
restored support for dvdnav only in the stream layer; all other functionalities are disabled
nicodvb
parents:
18558
diff
changeset
|
139 &stream_info_dvdnav, |
15518 | 140 #endif |
141 | |
9901
233802490b0e
Add a null streamv Currently used for tv and mf. Could be used to
albeu
parents:
9886
diff
changeset
|
142 &stream_info_null, |
19301 | 143 &stream_info_mf, |
9794 | 144 &stream_info_file, |
145 NULL | |
146 }; | |
147 | |
148 stream_t* open_stream_plugin(stream_info_t* sinfo,char* filename,int mode, | |
149 char** options, int* file_format, int* ret) { | |
150 void* arg = NULL; | |
151 stream_t* s; | |
152 m_struct_t* desc = (m_struct_t*)sinfo->opts; | |
153 | |
154 // Parse options | |
155 if(desc) { | |
156 arg = m_struct_alloc(desc); | |
157 if(sinfo->opts_url) { | |
158 m_option_t url_opt = | |
159 { "stream url", arg , CONF_TYPE_CUSTOM_URL, 0, 0 ,0, sinfo->opts }; | |
160 if(m_option_parse(&url_opt,"stream url",filename,arg,M_CONFIG_FILE) < 0) { | |
161 mp_msg(MSGT_OPEN,MSGL_ERR, "URL parsing failed on url %s\n",filename); | |
162 m_struct_free(desc,arg); | |
163 return NULL; | |
164 } | |
165 } | |
166 if(options) { | |
167 int i; | |
168 for(i = 0 ; options[i] != NULL ; i += 2) { | |
169 mp_msg(MSGT_OPEN,MSGL_DBG2, "Set stream arg %s=%s\n", | |
170 options[i],options[i+1]); | |
171 if(!m_struct_set(desc,arg,options[i],options[i+1])) | |
172 mp_msg(MSGT_OPEN,MSGL_WARN, "Failed to set stream option %s=%s\n", | |
173 options[i],options[i+1]); | |
174 } | |
175 } | |
176 } | |
177 s = new_stream(-2,-2); | |
178 s->url=strdup(filename); | |
179 s->flags |= mode; | |
180 *ret = sinfo->open(s,mode,arg,file_format); | |
181 if((*ret) != STREAM_OK) { | |
182 free(s->url); | |
183 free(s); | |
184 return NULL; | |
185 } | |
186 if(s->type <= -2) | |
187 mp_msg(MSGT_OPEN,MSGL_WARN, "Warning streams need a type !!!!\n"); | |
188 if(s->flags & STREAM_SEEK && !s->seek) | |
189 s->flags &= ~STREAM_SEEK; | |
190 if(s->seek && !(s->flags & STREAM_SEEK)) | |
9853 | 191 s->flags |= STREAM_SEEK; |
9794 | 192 |
193 | |
194 mp_msg(MSGT_OPEN,MSGL_V, "STREAM: [%s] %s\n",sinfo->name,filename); | |
195 mp_msg(MSGT_OPEN,MSGL_V, "STREAM: Description: %s\n",sinfo->info); | |
196 mp_msg(MSGT_OPEN,MSGL_V, "STREAM: Author: %s\n", sinfo->author); | |
197 mp_msg(MSGT_OPEN,MSGL_V, "STREAM: Comment: %s\n", sinfo->comment); | |
198 | |
199 return s; | |
200 } | |
201 | |
202 | |
203 stream_t* open_stream_full(char* filename,int mode, char** options, int* file_format) { | |
204 int i,j,l,r; | |
205 stream_info_t* sinfo; | |
206 stream_t* s; | |
207 | |
208 for(i = 0 ; auto_open_streams[i] ; i++) { | |
209 sinfo = auto_open_streams[i]; | |
210 if(!sinfo->protocols) { | |
10735
8a10d5d0ce86
serious bugs - 1l absinth (changed to absinth against cola inflation)
alex
parents:
10625
diff
changeset
|
211 mp_msg(MSGT_OPEN,MSGL_WARN, "Stream type %s has protocols == NULL, it's a bug\n", sinfo->name); |
9794 | 212 continue; |
213 } | |
214 for(j = 0 ; sinfo->protocols[j] ; j++) { | |
215 l = strlen(sinfo->protocols[j]); | |
216 // l == 0 => Don't do protocol matching (ie network and filenames) | |
217 if((l == 0) || ((strncmp(sinfo->protocols[j],filename,l) == 0) && | |
218 (strncmp("://",filename+l,3) == 0))) { | |
219 *file_format = DEMUXER_TYPE_UNKNOWN; | |
220 s = open_stream_plugin(sinfo,filename,mode,options,file_format,&r); | |
221 if(s) return s; | |
222 if(r != STREAM_UNSUPORTED) { | |
16793
8d4fb5469efb
Make a few more messages translatable by moving them into help_mp-en.h.
diego
parents:
16762
diff
changeset
|
223 mp_msg(MSGT_OPEN,MSGL_ERR, MSGTR_FailedToOpen,filename); |
9794 | 224 return NULL; |
225 } | |
226 break; | |
227 } | |
228 } | |
229 } | |
230 | |
231 mp_msg(MSGT_OPEN,MSGL_ERR, "No stream found to handle url %s\n",filename); | |
232 return NULL; | |
233 } | |
234 | |
1 | 235 //=================== STREAMER ========================= |
236 | |
237 int stream_fill_buffer(stream_t *s){ | |
238 int len; | |
9874
55a43ae66ceb
Oops, I just noticed albeu's revision 1.58 - so I backed out the
rsf
parents:
9873
diff
changeset
|
239 if (/*s->fd == NULL ||*/ s->eof) { s->buf_pos = s->buf_len = 0; return 0; } |
1 | 240 switch(s->type){ |
692 | 241 case STREAMTYPE_STREAM: |
10121
d42177a0da2a
Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents:
9915
diff
changeset
|
242 #ifdef MPLAYER_NETWORK |
3044
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
243 if( s->streaming_ctrl!=NULL ) { |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
244 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
|
245 } else { |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
246 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
|
247 } |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
248 #else |
1 | 249 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
|
250 #endif |
5133
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
251 case STREAMTYPE_DS: |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
252 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
|
253 break; |
9610 | 254 |
255 | |
9794 | 256 default: |
257 len= s->fill_buffer ? s->fill_buffer(s,s->buffer,STREAM_BUFFER_SIZE) : 0; | |
1 | 258 } |
259 if(len<=0){ s->eof=1; s->buf_pos=s->buf_len=0; return 0; } | |
260 s->buf_pos=0; | |
261 s->buf_len=len; | |
262 s->pos+=len; | |
263 // printf("[%d]",len);fflush(stdout); | |
264 return len; | |
265 } | |
266 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
267 int stream_seek_long(stream_t *s,off_t pos){ |
6814 | 268 off_t newpos=0; |
1 | 269 |
17932 | 270 // if( mp_msg_test(MSGT_STREAM,MSGL_DBG3) ) printf("seek_long to 0x%X\n",(unsigned int)pos); |
1 | 271 |
272 s->buf_pos=s->buf_len=0; | |
273 | |
274 switch(s->type){ | |
692 | 275 case STREAMTYPE_STREAM: |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
276 #ifdef _LARGEFILE_SOURCE |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
277 newpos=pos&(~((long long)STREAM_BUFFER_SIZE-1));break; |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
278 #else |
492 | 279 newpos=pos&(~(STREAM_BUFFER_SIZE-1));break; |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
280 #endif |
9794 | 281 default: |
282 // Round on sector size | |
283 if(s->sector_size) | |
284 newpos=(pos/s->sector_size)*s->sector_size; | |
285 else { // Otherwise on the buffer size | |
286 #ifdef _LARGEFILE_SOURCE | |
287 newpos=pos&(~((long long)STREAM_BUFFER_SIZE-1));break; | |
288 #else | |
289 newpos=pos&(~(STREAM_BUFFER_SIZE-1));break; | |
290 #endif | |
291 } | |
292 break; | |
1 | 293 } |
294 | |
17932 | 295 if( mp_msg_test(MSGT_STREAM,MSGL_DBG3) ){ |
18176
f72bc5754209
Part3 of Otvos Attila's oattila AT chello-hu mp_msg changes, with lots of modifications as usual
reynaldo
parents:
17932
diff
changeset
|
296 mp_msg(MSGT_STREAM,MSGL_DBG3, "s->pos=%"PRIX64" newpos=%"PRIX64" new_bufpos=%"PRIX64" buflen=%X \n", |
16750
0a31740dd5e6
Use PRI?64 defines as format strings for 64 bit variables.
reimar
parents:
16572
diff
changeset
|
297 (int64_t)s->pos,(int64_t)newpos,(int64_t)pos,s->buf_len); |
2050 | 298 } |
1 | 299 pos-=newpos; |
300 | |
301 if(newpos==0 || newpos!=s->pos){ | |
302 switch(s->type){ | |
692 | 303 case STREAMTYPE_STREAM: |
304 //s->pos=newpos; // real seek | |
3044
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
305 // 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
|
306 // 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
|
307 // doesn't support seeking. |
10121
d42177a0da2a
Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents:
9915
diff
changeset
|
308 #ifdef MPLAYER_NETWORK |
11965 | 309 if(s->seek) { // new stream seek is much cleaner than streaming_ctrl one |
310 if(!s->seek(s,newpos)) { | |
311 mp_msg(MSGT_STREAM,MSGL_ERR, "Seek failed\n"); | |
12018 | 312 return 0; |
11965 | 313 } |
314 break; | |
315 } | |
316 | |
8929
c5ca1ae42555
check if seeking supported, otherwise fallback to null reading
arpi
parents:
8812
diff
changeset
|
317 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
|
318 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
|
319 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
|
320 return 1; |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
321 } |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
322 } |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
323 #else |
692 | 324 if(newpos<s->pos){ |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
325 mp_msg(MSGT_STREAM,MSGL_INFO,"Cannot seek backward in linear streams!\n"); |
692 | 326 return 1; |
327 } | |
328 while(s->pos<newpos){ | |
329 if(stream_fill_buffer(s)<=0) break; // EOF | |
330 } | |
3044
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
331 #endif |
692 | 332 break; |
7408 | 333 default: |
9794 | 334 // This should at the beginning as soon as all streams are converted |
335 if(!s->seek) | |
336 return 0; | |
337 // Now seek | |
338 if(!s->seek(s,newpos)) { | |
339 mp_msg(MSGT_STREAM,MSGL_ERR, "Seek failed\n"); | |
340 return 0; | |
341 } | |
1 | 342 } |
343 // putchar('.');fflush(stdout); | |
344 //} else { | |
345 // putchar('%');fflush(stdout); | |
346 } | |
347 | |
17878
ab0a3e3d32ed
Fix a potential seek failure, fill_buffer doesn't have to
albeu
parents:
17712
diff
changeset
|
348 while(stream_fill_buffer(s) > 0 && pos >= 0) { |
ab0a3e3d32ed
Fix a potential seek failure, fill_buffer doesn't have to
albeu
parents:
17712
diff
changeset
|
349 if(pos<=s->buf_len){ |
1 | 350 s->buf_pos=pos; // byte position in sector |
351 return 1; | |
352 } | |
17878
ab0a3e3d32ed
Fix a potential seek failure, fill_buffer doesn't have to
albeu
parents:
17712
diff
changeset
|
353 pos -= s->buf_len; |
ab0a3e3d32ed
Fix a potential seek failure, fill_buffer doesn't have to
albeu
parents:
17712
diff
changeset
|
354 } |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
355 |
1999 | 356 // if(pos==s->buf_len) printf("XXX Seek to last byte of file -> EOF\n"); |
357 | |
16750
0a31740dd5e6
Use PRI?64 defines as format strings for 64 bit variables.
reimar
parents:
16572
diff
changeset
|
358 mp_msg(MSGT_STREAM,MSGL_V,"stream_seek: WARNING! Can't seek to 0x%"PRIX64" !\n",(int64_t)(pos+newpos)); |
1 | 359 return 0; |
360 } | |
361 | |
362 | |
363 void stream_reset(stream_t *s){ | |
364 if(s->eof){ | |
365 s->pos=0; //ftell(f); | |
366 // s->buf_pos=s->buf_len=0; | |
367 s->eof=0; | |
368 } | |
9853 | 369 if(s->control) s->control(s,STREAM_CTRL_RESET,NULL); |
1 | 370 //stream_seek(s,0); |
371 } | |
372 | |
17712 | 373 int stream_control(stream_t *s, int cmd, void *arg){ |
17696
66d7afee9a46
added new stream_control() and new command: STREAM_CTRL_GET_TIME_LENGTH
nicodvb
parents:
17191
diff
changeset
|
374 if(!s->control) return STREAM_UNSUPORTED; |
66d7afee9a46
added new stream_control() and new command: STREAM_CTRL_GET_TIME_LENGTH
nicodvb
parents:
17191
diff
changeset
|
375 return s->control(s, cmd, arg); |
66d7afee9a46
added new stream_control() and new command: STREAM_CTRL_GET_TIME_LENGTH
nicodvb
parents:
17191
diff
changeset
|
376 } |
66d7afee9a46
added new stream_control() and new command: STREAM_CTRL_GET_TIME_LENGTH
nicodvb
parents:
17191
diff
changeset
|
377 |
2144 | 378 stream_t* new_memory_stream(unsigned char* data,int len){ |
18558
4928dd61f136
Fix potential integer overflows in memory allocation.
rtogni
parents:
18176
diff
changeset
|
379 stream_t *s; |
4928dd61f136
Fix potential integer overflows in memory allocation.
rtogni
parents:
18176
diff
changeset
|
380 |
4928dd61f136
Fix potential integer overflows in memory allocation.
rtogni
parents:
18176
diff
changeset
|
381 if(len < 0) |
4928dd61f136
Fix potential integer overflows in memory allocation.
rtogni
parents:
18176
diff
changeset
|
382 return NULL; |
4928dd61f136
Fix potential integer overflows in memory allocation.
rtogni
parents:
18176
diff
changeset
|
383 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
|
384 memset(s,0,sizeof(stream_t)); |
2144 | 385 s->fd=-1; |
386 s->type=STREAMTYPE_MEMORY; | |
387 s->buf_pos=0; s->buf_len=len; | |
388 s->start_pos=0; s->end_pos=len; | |
389 stream_reset(s); | |
390 s->pos=len; | |
391 memcpy(s->buffer,data,len); | |
392 return s; | |
393 } | |
394 | |
1 | 395 stream_t* new_stream(int fd,int type){ |
396 stream_t *s=malloc(sizeof(stream_t)); | |
3291 | 397 if(s==NULL) return NULL; |
398 memset(s,0,sizeof(stream_t)); | |
10281 | 399 |
400 #ifdef HAVE_WINSOCK2 | |
401 { | |
402 WSADATA wsdata; | |
403 int temp = WSAStartup(0x0202, &wsdata); // there might be a better place for this (-> later) | |
404 mp_msg(MSGT_STREAM,MSGL_V,"WINSOCK2 init: %i\n", temp); | |
405 } | |
406 #endif | |
3291 | 407 |
1 | 408 s->fd=fd; |
409 s->type=type; | |
180 | 410 s->buf_pos=s->buf_len=0; |
598 | 411 s->start_pos=s->end_pos=0; |
1642 | 412 s->priv=NULL; |
7407 | 413 s->url=NULL; |
2322 | 414 s->cache_pid=0; |
1 | 415 stream_reset(s); |
416 return s; | |
417 } | |
418 | |
419 void free_stream(stream_t *s){ | |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
5982
diff
changeset
|
420 // printf("\n*** free_stream() called ***\n"); |
9798 | 421 #ifdef USE_STREAM_CACHE |
4893 | 422 if(s->cache_pid) { |
9915 | 423 cache_uninit(s); |
4893 | 424 } |
9798 | 425 #endif |
15520 | 426 if(s->close) s->close(s); |
15421
ae5e1b9e3c92
fix segfaults caused by socket and file descriptor mismatches on windows
faust3
parents:
14836
diff
changeset
|
427 if(s->fd>0){ |
ae5e1b9e3c92
fix segfaults caused by socket and file descriptor mismatches on windows
faust3
parents:
14836
diff
changeset
|
428 /* on unix we define closesocket to close |
ae5e1b9e3c92
fix segfaults caused by socket and file descriptor mismatches on windows
faust3
parents:
14836
diff
changeset
|
429 on windows however we have to distinguish between |
ae5e1b9e3c92
fix segfaults caused by socket and file descriptor mismatches on windows
faust3
parents:
14836
diff
changeset
|
430 network socket and file */ |
ae5e1b9e3c92
fix segfaults caused by socket and file descriptor mismatches on windows
faust3
parents:
14836
diff
changeset
|
431 if(s->url && strstr(s->url,"://")) |
ae5e1b9e3c92
fix segfaults caused by socket and file descriptor mismatches on windows
faust3
parents:
14836
diff
changeset
|
432 closesocket(s->fd); |
ae5e1b9e3c92
fix segfaults caused by socket and file descriptor mismatches on windows
faust3
parents:
14836
diff
changeset
|
433 else close(s->fd); |
ae5e1b9e3c92
fix segfaults caused by socket and file descriptor mismatches on windows
faust3
parents:
14836
diff
changeset
|
434 } |
10281 | 435 #ifdef HAVE_WINSOCK2 |
436 mp_msg(MSGT_STREAM,MSGL_V,"WINSOCK2 uninit\n"); | |
437 WSACleanup(); // there might be a better place for this (-> later) | |
438 #endif | |
9794 | 439 // Disabled atm, i don't like that. s->priv can be anything after all |
440 // streams should destroy their priv on close | |
441 //if(s->priv) free(s->priv); | |
442 if(s->url) free(s->url); | |
1 | 443 free(s); |
444 } | |
445 | |
5133
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
446 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
|
447 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
|
448 s->priv = ds; |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
449 return s; |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
450 } |