Mercurial > mplayer.hg
annotate libmpdemux/stream.c @ 15082:71570687c1a3
HRTF filter updates:
- Bass compensation gain corrected (which was set too low), now the
sound should be even more transparent
- A (unified) dual axes active matrix decoder with adaptive steering
- capable of decoding matrix surround encoded inputs, with stereo rear
- capable of decoding matrix encoded rear center
- Purely stereo mixing without unneccessary rear filter calculations
- The decoding structure message is moved, because at the old place it
gave incorrect messages.
Patch by Yue Shi Lai <ylai@users.sourceforge.net>
author | henry |
---|---|
date | Sun, 10 Apr 2005 08:47:16 +0000 |
parents | 8b9738526dd7 |
children | ae5e1b9e3c92 |
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 | |
10560 | 61 #ifdef HAS_DVBIN_SUPPORT |
62 extern stream_info_t stream_info_dvb; | |
63 #endif | |
10625
620cc649f519
ftp support. The change on connect2Server is needed bcs we need 2
albeu
parents:
10560
diff
changeset
|
64 #ifdef HAVE_FTP |
620cc649f519
ftp support. The change on connect2Server is needed bcs we need 2
albeu
parents:
10560
diff
changeset
|
65 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
|
66 #endif |
14836
8b9738526dd7
added a stream module for the vstream client library
joey
parents:
12018
diff
changeset
|
67 #ifdef HAVE_VSTREAM |
8b9738526dd7
added a stream module for the vstream client library
joey
parents:
12018
diff
changeset
|
68 extern stream_info_t stream_info_vstream; |
8b9738526dd7
added a stream module for the vstream client library
joey
parents:
12018
diff
changeset
|
69 #endif |
10560 | 70 |
9901
233802490b0e
Add a null streamv Currently used for tv and mf. Could be used to
albeu
parents:
9886
diff
changeset
|
71 extern stream_info_t stream_info_null; |
9794 | 72 extern stream_info_t stream_info_file; |
73 | |
74 stream_info_t* auto_open_streams[] = { | |
9886 | 75 #ifdef HAVE_VCD |
76 &stream_info_vcd, | |
77 #endif | |
9810 | 78 #ifdef HAVE_CDDA |
9801 | 79 &stream_info_cdda, |
9810 | 80 #endif |
10121
d42177a0da2a
Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents:
9915
diff
changeset
|
81 #ifdef MPLAYER_NETWORK |
9853 | 82 &stream_info_netstream, |
83 #endif | |
10560 | 84 #ifdef HAS_DVBIN_SUPPORT |
85 &stream_info_dvb, | |
86 #endif | |
10625
620cc649f519
ftp support. The change on connect2Server is needed bcs we need 2
albeu
parents:
10560
diff
changeset
|
87 #ifdef HAVE_FTP |
620cc649f519
ftp support. The change on connect2Server is needed bcs we need 2
albeu
parents:
10560
diff
changeset
|
88 &stream_info_ftp, |
620cc649f519
ftp support. The change on connect2Server is needed bcs we need 2
albeu
parents:
10560
diff
changeset
|
89 #endif |
14836
8b9738526dd7
added a stream module for the vstream client library
joey
parents:
12018
diff
changeset
|
90 #ifdef HAVE_VSTREAM |
8b9738526dd7
added a stream module for the vstream client library
joey
parents:
12018
diff
changeset
|
91 &stream_info_vstream, |
8b9738526dd7
added a stream module for the vstream client library
joey
parents:
12018
diff
changeset
|
92 #endif |
9901
233802490b0e
Add a null streamv Currently used for tv and mf. Could be used to
albeu
parents:
9886
diff
changeset
|
93 &stream_info_null, |
9794 | 94 &stream_info_file, |
95 NULL | |
96 }; | |
97 | |
98 stream_t* open_stream_plugin(stream_info_t* sinfo,char* filename,int mode, | |
99 char** options, int* file_format, int* ret) { | |
100 void* arg = NULL; | |
101 stream_t* s; | |
102 m_struct_t* desc = (m_struct_t*)sinfo->opts; | |
103 | |
104 // Parse options | |
105 if(desc) { | |
106 arg = m_struct_alloc(desc); | |
107 if(sinfo->opts_url) { | |
108 m_option_t url_opt = | |
109 { "stream url", arg , CONF_TYPE_CUSTOM_URL, 0, 0 ,0, sinfo->opts }; | |
110 if(m_option_parse(&url_opt,"stream url",filename,arg,M_CONFIG_FILE) < 0) { | |
111 mp_msg(MSGT_OPEN,MSGL_ERR, "URL parsing failed on url %s\n",filename); | |
112 m_struct_free(desc,arg); | |
113 return NULL; | |
114 } | |
115 } | |
116 if(options) { | |
117 int i; | |
118 for(i = 0 ; options[i] != NULL ; i += 2) { | |
119 mp_msg(MSGT_OPEN,MSGL_DBG2, "Set stream arg %s=%s\n", | |
120 options[i],options[i+1]); | |
121 if(!m_struct_set(desc,arg,options[i],options[i+1])) | |
122 mp_msg(MSGT_OPEN,MSGL_WARN, "Failed to set stream option %s=%s\n", | |
123 options[i],options[i+1]); | |
124 } | |
125 } | |
126 } | |
127 s = new_stream(-2,-2); | |
128 s->url=strdup(filename); | |
129 s->flags |= mode; | |
130 *ret = sinfo->open(s,mode,arg,file_format); | |
131 if((*ret) != STREAM_OK) { | |
132 free(s->url); | |
133 free(s); | |
134 return NULL; | |
135 } | |
136 if(s->type <= -2) | |
137 mp_msg(MSGT_OPEN,MSGL_WARN, "Warning streams need a type !!!!\n"); | |
138 if(s->flags & STREAM_SEEK && !s->seek) | |
139 s->flags &= ~STREAM_SEEK; | |
140 if(s->seek && !(s->flags & STREAM_SEEK)) | |
9853 | 141 s->flags |= STREAM_SEEK; |
9794 | 142 |
143 | |
144 mp_msg(MSGT_OPEN,MSGL_V, "STREAM: [%s] %s\n",sinfo->name,filename); | |
145 mp_msg(MSGT_OPEN,MSGL_V, "STREAM: Description: %s\n",sinfo->info); | |
146 mp_msg(MSGT_OPEN,MSGL_V, "STREAM: Author: %s\n", sinfo->author); | |
147 mp_msg(MSGT_OPEN,MSGL_V, "STREAM: Comment: %s\n", sinfo->comment); | |
148 | |
149 return s; | |
150 } | |
151 | |
152 | |
153 stream_t* open_stream_full(char* filename,int mode, char** options, int* file_format) { | |
154 int i,j,l,r; | |
155 stream_info_t* sinfo; | |
156 stream_t* s; | |
157 | |
158 for(i = 0 ; auto_open_streams[i] ; i++) { | |
159 sinfo = auto_open_streams[i]; | |
160 if(!sinfo->protocols) { | |
10735
8a10d5d0ce86
serious bugs - 1l absinth (changed to absinth against cola inflation)
alex
parents:
10625
diff
changeset
|
161 mp_msg(MSGT_OPEN,MSGL_WARN, "Stream type %s has protocols == NULL, it's a bug\n", sinfo->name); |
9794 | 162 continue; |
163 } | |
164 for(j = 0 ; sinfo->protocols[j] ; j++) { | |
165 l = strlen(sinfo->protocols[j]); | |
166 // l == 0 => Don't do protocol matching (ie network and filenames) | |
167 if((l == 0) || ((strncmp(sinfo->protocols[j],filename,l) == 0) && | |
168 (strncmp("://",filename+l,3) == 0))) { | |
169 *file_format = DEMUXER_TYPE_UNKNOWN; | |
170 s = open_stream_plugin(sinfo,filename,mode,options,file_format,&r); | |
171 if(s) return s; | |
172 if(r != STREAM_UNSUPORTED) { | |
173 mp_msg(MSGT_OPEN,MSGL_ERR, "Failed to open %s\n",filename); | |
174 return NULL; | |
175 } | |
176 break; | |
177 } | |
178 } | |
179 } | |
180 | |
181 mp_msg(MSGT_OPEN,MSGL_ERR, "No stream found to handle url %s\n",filename); | |
182 return NULL; | |
183 } | |
184 | |
1 | 185 //=================== STREAMER ========================= |
186 | |
187 int stream_fill_buffer(stream_t *s){ | |
188 int len; | |
9874
55a43ae66ceb
Oops, I just noticed albeu's revision 1.58 - so I backed out the
rsf
parents:
9873
diff
changeset
|
189 if (/*s->fd == NULL ||*/ s->eof) { s->buf_pos = s->buf_len = 0; return 0; } |
1 | 190 switch(s->type){ |
7630
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
191 #ifdef LIBSMBCLIENT |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
192 case STREAMTYPE_SMB: |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
193 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
|
194 break; |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
195 #endif |
692 | 196 case STREAMTYPE_STREAM: |
10121
d42177a0da2a
Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents:
9915
diff
changeset
|
197 #ifdef MPLAYER_NETWORK |
3044
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
198 if( s->streaming_ctrl!=NULL ) { |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
199 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
|
200 } else { |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
201 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
|
202 } |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
203 #else |
1 | 204 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
|
205 #endif |
8782
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
206 case STREAMTYPE_VCDBINCUE: |
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
207 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
|
208 #ifdef USE_DVDNAV |
8a01cde9cf39
DVDnav support patch by David Holm and Kees Cook <mplayer@outflux.net>
arpi
parents:
5133
diff
changeset
|
209 case STREAMTYPE_DVDNAV: { |
5472 | 210 dvdnav_stream_read((dvdnav_priv_t*)s->priv,s->buffer,&len); |
211 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
|
212 break; |
8a01cde9cf39
DVDnav support patch by David Holm and Kees Cook <mplayer@outflux.net>
arpi
parents:
5133
diff
changeset
|
213 } |
8a01cde9cf39
DVDnav support patch by David Holm and Kees Cook <mplayer@outflux.net>
arpi
parents:
5133
diff
changeset
|
214 #endif |
1595 | 215 #ifdef USE_DVDREAD |
216 case STREAMTYPE_DVD: { | |
217 off_t pos=dvd_read_sector(s->priv,s->buffer); | |
218 if(pos>=0){ | |
219 len=2048; // full sector | |
220 s->pos=2048*pos-len; | |
221 } else len=-1; // error | |
222 break; | |
223 } | |
224 #endif | |
5133
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
225 case STREAMTYPE_DS: |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
226 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
|
227 break; |
9610 | 228 |
229 | |
9794 | 230 default: |
231 len= s->fill_buffer ? s->fill_buffer(s,s->buffer,STREAM_BUFFER_SIZE) : 0; | |
1 | 232 } |
233 if(len<=0){ s->eof=1; s->buf_pos=s->buf_len=0; return 0; } | |
234 s->buf_pos=0; | |
235 s->buf_len=len; | |
236 s->pos+=len; | |
237 // printf("[%d]",len);fflush(stdout); | |
238 return len; | |
239 } | |
240 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
241 int stream_seek_long(stream_t *s,off_t pos){ |
6814 | 242 off_t newpos=0; |
1 | 243 |
2144 | 244 // if(verbose>=3) printf("seek_long to 0x%X\n",(unsigned int)pos); |
1 | 245 |
246 s->buf_pos=s->buf_len=0; | |
247 | |
248 switch(s->type){ | |
7630
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
249 case STREAMTYPE_SMB: |
692 | 250 case STREAMTYPE_STREAM: |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
251 #ifdef _LARGEFILE_SOURCE |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
252 newpos=pos&(~((long long)STREAM_BUFFER_SIZE-1));break; |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
253 #else |
492 | 254 newpos=pos&(~(STREAM_BUFFER_SIZE-1));break; |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
255 #endif |
8782
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
256 case STREAMTYPE_VCDBINCUE: |
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
257 newpos=(pos/VCD_SECTOR_DATA)*VCD_SECTOR_DATA;break; |
1595 | 258 case STREAMTYPE_DVD: |
259 newpos=pos/2048; newpos*=2048; break; | |
9794 | 260 default: |
261 // Round on sector size | |
262 if(s->sector_size) | |
263 newpos=(pos/s->sector_size)*s->sector_size; | |
264 else { // Otherwise on the buffer size | |
265 #ifdef _LARGEFILE_SOURCE | |
266 newpos=pos&(~((long long)STREAM_BUFFER_SIZE-1));break; | |
267 #else | |
268 newpos=pos&(~(STREAM_BUFFER_SIZE-1));break; | |
269 #endif | |
270 } | |
271 break; | |
1 | 272 } |
273 | |
2050 | 274 if(verbose>=3){ |
275 #ifdef _LARGEFILE_SOURCE | |
276 printf("s->pos=%llX newpos=%llX new_bufpos=%llX buflen=%X \n", | |
277 (long long)s->pos,(long long)newpos,(long long)pos,s->buf_len); | |
278 #else | |
279 printf("s->pos=%X newpos=%X new_bufpos=%X buflen=%X \n", | |
280 (unsigned int)s->pos,newpos,pos,s->buf_len); | |
281 #endif | |
282 } | |
283 | |
1 | 284 pos-=newpos; |
285 | |
286 if(newpos==0 || newpos!=s->pos){ | |
287 switch(s->type){ | |
7630
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
288 #ifdef LIBSMBCLIENT |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
289 case STREAMTYPE_SMB: |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
290 s->pos=newpos; // real seek |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
291 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
|
292 break; |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
293 #endif |
8782
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
294 case STREAMTYPE_VCDBINCUE: |
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
295 s->pos=newpos; // real seek |
6af7a6595cc9
cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents:
8524
diff
changeset
|
296 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
|
297 break; |
5472 | 298 #ifdef USE_DVDNAV |
299 case STREAMTYPE_DVDNAV: { | |
300 if (newpos==0) { | |
301 if (dvdnav_stream_reset((dvdnav_priv_t*)s->priv)) | |
302 s->pos=0; | |
303 } | |
304 if(newpos!=s->pos){ | |
305 mp_msg(MSGT_STREAM,MSGL_INFO,"Cannot seek in DVDNAV streams yet!\n"); | |
306 return 1; | |
307 } | |
308 break; | |
309 } | |
310 #endif | |
1595 | 311 #ifdef USE_DVDREAD |
312 case STREAMTYPE_DVD: | |
313 s->pos=newpos; // real seek | |
314 dvd_seek(s->priv,s->pos/2048); | |
315 break; | |
316 #endif | |
692 | 317 case STREAMTYPE_STREAM: |
318 //s->pos=newpos; // real seek | |
3044
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
319 // 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
|
320 // 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
|
321 // doesn't support seeking. |
10121
d42177a0da2a
Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents:
9915
diff
changeset
|
322 #ifdef MPLAYER_NETWORK |
11965 | 323 if(s->seek) { // new stream seek is much cleaner than streaming_ctrl one |
324 if(!s->seek(s,newpos)) { | |
325 mp_msg(MSGT_STREAM,MSGL_ERR, "Seek failed\n"); | |
12018 | 326 return 0; |
11965 | 327 } |
328 break; | |
329 } | |
330 | |
8929
c5ca1ae42555
check if seeking supported, otherwise fallback to null reading
arpi
parents:
8812
diff
changeset
|
331 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
|
332 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
|
333 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
|
334 return 1; |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
335 } |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
336 } |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
337 #else |
692 | 338 if(newpos<s->pos){ |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
339 mp_msg(MSGT_STREAM,MSGL_INFO,"Cannot seek backward in linear streams!\n"); |
692 | 340 return 1; |
341 } | |
342 while(s->pos<newpos){ | |
343 if(stream_fill_buffer(s)<=0) break; // EOF | |
344 } | |
3044
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
345 #endif |
692 | 346 break; |
7408 | 347 default: |
9794 | 348 // This should at the beginning as soon as all streams are converted |
349 if(!s->seek) | |
350 return 0; | |
351 // Now seek | |
352 if(!s->seek(s,newpos)) { | |
353 mp_msg(MSGT_STREAM,MSGL_ERR, "Seek failed\n"); | |
354 return 0; | |
355 } | |
1 | 356 } |
357 // putchar('.');fflush(stdout); | |
358 //} else { | |
359 // putchar('%');fflush(stdout); | |
360 } | |
361 | |
362 stream_fill_buffer(s); | |
1999 | 363 if(pos>=0 && pos<=s->buf_len){ |
1 | 364 s->buf_pos=pos; // byte position in sector |
365 return 1; | |
366 } | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
367 |
1999 | 368 // if(pos==s->buf_len) printf("XXX Seek to last byte of file -> EOF\n"); |
369 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
370 #ifdef _LARGEFILE_SOURCE |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
371 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
|
372 #else |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
373 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
|
374 #endif |
1 | 375 return 0; |
376 } | |
377 | |
378 | |
379 void stream_reset(stream_t *s){ | |
380 if(s->eof){ | |
381 s->pos=0; //ftell(f); | |
382 // s->buf_pos=s->buf_len=0; | |
383 s->eof=0; | |
384 } | |
9853 | 385 if(s->control) s->control(s,STREAM_CTRL_RESET,NULL); |
1 | 386 //stream_seek(s,0); |
387 } | |
388 | |
2144 | 389 stream_t* new_memory_stream(unsigned char* data,int len){ |
390 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
|
391 memset(s,0,sizeof(stream_t)); |
2144 | 392 s->fd=-1; |
393 s->type=STREAMTYPE_MEMORY; | |
394 s->buf_pos=0; s->buf_len=len; | |
395 s->start_pos=0; s->end_pos=len; | |
396 stream_reset(s); | |
397 s->pos=len; | |
398 memcpy(s->buffer,data,len); | |
399 return s; | |
400 } | |
401 | |
1 | 402 stream_t* new_stream(int fd,int type){ |
403 stream_t *s=malloc(sizeof(stream_t)); | |
3291 | 404 if(s==NULL) return NULL; |
405 memset(s,0,sizeof(stream_t)); | |
10281 | 406 |
407 #ifdef HAVE_WINSOCK2 | |
408 { | |
409 WSADATA wsdata; | |
410 int temp = WSAStartup(0x0202, &wsdata); // there might be a better place for this (-> later) | |
411 mp_msg(MSGT_STREAM,MSGL_V,"WINSOCK2 init: %i\n", temp); | |
412 } | |
413 #endif | |
3291 | 414 |
1 | 415 s->fd=fd; |
416 s->type=type; | |
180 | 417 s->buf_pos=s->buf_len=0; |
598 | 418 s->start_pos=s->end_pos=0; |
1642 | 419 s->priv=NULL; |
7407 | 420 s->url=NULL; |
2322 | 421 s->cache_pid=0; |
1 | 422 stream_reset(s); |
423 return s; | |
424 } | |
425 | |
426 void free_stream(stream_t *s){ | |
6138
523014df7d32
big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents:
5982
diff
changeset
|
427 // printf("\n*** free_stream() called ***\n"); |
9798 | 428 #ifdef USE_STREAM_CACHE |
4893 | 429 if(s->cache_pid) { |
9915 | 430 cache_uninit(s); |
4893 | 431 } |
9798 | 432 #endif |
6479 | 433 switch(s->type) { |
7630
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
434 #ifdef LIBSMBCLIENT |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
435 case STREAMTYPE_SMB: |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
436 smbc_close(s->fd); |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
437 break; |
4c51ce16c4a2
smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents:
7408
diff
changeset
|
438 #endif |
9610 | 439 |
6479 | 440 #ifdef USE_DVDREAD |
441 case STREAMTYPE_DVD: | |
442 dvd_close(s->priv); | |
443 #endif | |
9794 | 444 default: |
445 if(s->close) s->close(s); | |
446 } | |
10281 | 447 if(s->fd>0) closesocket(s->fd); |
448 #ifdef HAVE_WINSOCK2 | |
449 mp_msg(MSGT_STREAM,MSGL_V,"WINSOCK2 uninit\n"); | |
450 WSACleanup(); // there might be a better place for this (-> later) | |
451 #endif | |
9794 | 452 // Disabled atm, i don't like that. s->priv can be anything after all |
453 // streams should destroy their priv on close | |
454 //if(s->priv) free(s->priv); | |
455 if(s->url) free(s->url); | |
1 | 456 free(s); |
457 } | |
458 | |
5133
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
459 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
|
460 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
|
461 s->priv = ds; |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
462 return s; |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
463 } |