Mercurial > mplayer.hg
annotate libmpdemux/stream.c @ 5638:86663f1b9b00
new osd code, use osd objs to follow changes and do minimal updates
author | arpi |
---|---|
date | Mon, 15 Apr 2002 19:17:12 +0000 |
parents | 4bd766a5632b |
children | 02576893af2a |
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> |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
8 #include <sys/ioctl.h> |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
9 #include <fcntl.h> |
2322 | 10 #include <signal.h> |
578 | 11 |
1430 | 12 #include "config.h" |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
13 #include "mp_msg.h" |
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
14 #include "help_mp.h" |
578 | 15 |
16 #include "stream.h" | |
5133
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
17 #include "demuxer.h" |
578 | 18 |
19 extern int verbose; // defined in mplayer.c | |
1 | 20 |
3261 | 21 #ifdef HAVE_VCD |
22 | |
958
162a78d3cc08
FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
692
diff
changeset
|
23 #ifdef __FreeBSD__ |
2310 | 24 #include "vcd_read_fbsd.h" |
958
162a78d3cc08
FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
692
diff
changeset
|
25 #else |
2310 | 26 #include "vcd_read.h" |
958
162a78d3cc08
FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
692
diff
changeset
|
27 #endif |
1 | 28 |
3261 | 29 #endif |
30 | |
1595 | 31 #ifdef USE_DVDREAD |
32 int dvd_read_sector(void* d,void* p2); | |
33 void dvd_seek(void* d,off_t pos); | |
34 #endif | |
35 | |
1 | 36 //=================== STREAMER ========================= |
37 | |
38 int stream_fill_buffer(stream_t *s){ | |
39 int len; | |
40 if(s->eof){ s->buf_pos=s->buf_len=0; return 0; } | |
41 switch(s->type){ | |
42 case STREAMTYPE_FILE: | |
692 | 43 case STREAMTYPE_STREAM: |
4042
d651a7b5d213
STREAMTYPE_PLAYLIST introduced. similar to STREAMTYPE_STREAM but used for playlists. patch by Alban Bedel <albeu@free.fr>
arpi
parents:
3291
diff
changeset
|
44 case STREAMTYPE_PLAYLIST: |
3044
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
45 #ifdef STREAMING |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
46 if( s->streaming_ctrl!=NULL ) { |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
47 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
|
48 } else { |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
49 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
|
50 } |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
51 #else |
1 | 52 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
|
53 #endif |
3261 | 54 #ifdef HAVE_VCD |
1 | 55 case STREAMTYPE_VCD: |
56 #ifdef VCD_CACHE | |
57 len=vcd_cache_read(s->fd,s->buffer);break; | |
58 #else | |
59 len=vcd_read(s->fd,s->buffer);break; | |
60 #endif | |
3261 | 61 #endif |
5380
8a01cde9cf39
DVDnav support patch by David Holm and Kees Cook <mplayer@outflux.net>
arpi
parents:
5133
diff
changeset
|
62 #ifdef USE_DVDNAV |
8a01cde9cf39
DVDnav support patch by David Holm and Kees Cook <mplayer@outflux.net>
arpi
parents:
5133
diff
changeset
|
63 case STREAMTYPE_DVDNAV: { |
5472 | 64 dvdnav_stream_read((dvdnav_priv_t*)s->priv,s->buffer,&len); |
65 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
|
66 break; |
8a01cde9cf39
DVDnav support patch by David Holm and Kees Cook <mplayer@outflux.net>
arpi
parents:
5133
diff
changeset
|
67 } |
8a01cde9cf39
DVDnav support patch by David Holm and Kees Cook <mplayer@outflux.net>
arpi
parents:
5133
diff
changeset
|
68 #endif |
1595 | 69 #ifdef USE_DVDREAD |
70 case STREAMTYPE_DVD: { | |
71 off_t pos=dvd_read_sector(s->priv,s->buffer); | |
72 if(pos>=0){ | |
73 len=2048; // full sector | |
74 s->pos=2048*pos-len; | |
75 } else len=-1; // error | |
76 break; | |
77 } | |
78 #endif | |
2790 | 79 #ifdef USE_TV |
80 case STREAMTYPE_TV: | |
81 { | |
82 len = 0; | |
83 break; | |
84 } | |
85 #endif | |
5133
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
86 case STREAMTYPE_DS: |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
87 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
|
88 break; |
1 | 89 default: len=0; |
90 } | |
91 if(len<=0){ s->eof=1; s->buf_pos=s->buf_len=0; return 0; } | |
92 s->buf_pos=0; | |
93 s->buf_len=len; | |
94 s->pos+=len; | |
95 // printf("[%d]",len);fflush(stdout); | |
96 return len; | |
97 } | |
98 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
99 int stream_seek_long(stream_t *s,off_t pos){ |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
100 off_t newpos; |
1 | 101 |
2144 | 102 // if(verbose>=3) printf("seek_long to 0x%X\n",(unsigned int)pos); |
1 | 103 |
104 s->buf_pos=s->buf_len=0; | |
105 | |
106 switch(s->type){ | |
107 case STREAMTYPE_FILE: | |
692 | 108 case STREAMTYPE_STREAM: |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
109 #ifdef _LARGEFILE_SOURCE |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
110 newpos=pos&(~((long long)STREAM_BUFFER_SIZE-1));break; |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
111 #else |
492 | 112 newpos=pos&(~(STREAM_BUFFER_SIZE-1));break; |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
113 #endif |
1 | 114 case STREAMTYPE_VCD: |
115 newpos=(pos/VCD_SECTOR_DATA)*VCD_SECTOR_DATA;break; | |
1595 | 116 case STREAMTYPE_DVD: |
117 newpos=pos/2048; newpos*=2048; break; | |
1 | 118 } |
119 | |
2050 | 120 if(verbose>=3){ |
121 #ifdef _LARGEFILE_SOURCE | |
122 printf("s->pos=%llX newpos=%llX new_bufpos=%llX buflen=%X \n", | |
123 (long long)s->pos,(long long)newpos,(long long)pos,s->buf_len); | |
124 #else | |
125 printf("s->pos=%X newpos=%X new_bufpos=%X buflen=%X \n", | |
126 (unsigned int)s->pos,newpos,pos,s->buf_len); | |
127 #endif | |
128 } | |
129 | |
1 | 130 pos-=newpos; |
131 | |
132 if(newpos==0 || newpos!=s->pos){ | |
133 switch(s->type){ | |
134 case STREAMTYPE_FILE: | |
692 | 135 s->pos=newpos; // real seek |
1 | 136 if(lseek(s->fd,s->pos,SEEK_SET)<0) s->eof=1; |
137 break; | |
3261 | 138 #ifdef HAVE_VCD |
1 | 139 case STREAMTYPE_VCD: |
692 | 140 s->pos=newpos; // real seek |
1 | 141 #ifdef VCD_CACHE |
142 vcd_cache_seek(s->pos/VCD_SECTOR_DATA); | |
143 #else | |
144 vcd_set_msf(s->pos/VCD_SECTOR_DATA); | |
145 #endif | |
146 break; | |
3261 | 147 #endif |
5472 | 148 #ifdef USE_DVDNAV |
149 case STREAMTYPE_DVDNAV: { | |
150 if (newpos==0) { | |
151 if (dvdnav_stream_reset((dvdnav_priv_t*)s->priv)) | |
152 s->pos=0; | |
153 } | |
154 if(newpos!=s->pos){ | |
155 mp_msg(MSGT_STREAM,MSGL_INFO,"Cannot seek in DVDNAV streams yet!\n"); | |
156 return 1; | |
157 } | |
158 break; | |
159 } | |
160 #endif | |
1595 | 161 #ifdef USE_DVDREAD |
162 case STREAMTYPE_DVD: | |
163 s->pos=newpos; // real seek | |
164 dvd_seek(s->priv,s->pos/2048); | |
165 break; | |
166 #endif | |
692 | 167 case STREAMTYPE_STREAM: |
168 //s->pos=newpos; // real seek | |
3044
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
169 // 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
|
170 // 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
|
171 // doesn't support seeking. |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
172 #ifdef STREAMING |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
173 if( s->streaming_ctrl!=NULL ) { |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
174 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
|
175 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
|
176 return 1; |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
177 } |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
178 } |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
179 #else |
692 | 180 if(newpos<s->pos){ |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
181 mp_msg(MSGT_STREAM,MSGL_INFO,"Cannot seek backward in linear streams!\n"); |
692 | 182 return 1; |
183 } | |
184 while(s->pos<newpos){ | |
185 if(stream_fill_buffer(s)<=0) break; // EOF | |
186 } | |
3044
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
187 #endif |
692 | 188 break; |
2790 | 189 #ifdef USE_TV |
190 case STREAMTYPE_TV: | |
191 s->pos=newpos; /* no sense */ | |
192 break; | |
193 #endif | |
1 | 194 } |
195 // putchar('.');fflush(stdout); | |
196 //} else { | |
197 // putchar('%');fflush(stdout); | |
198 } | |
199 | |
200 stream_fill_buffer(s); | |
1999 | 201 if(pos>=0 && pos<=s->buf_len){ |
1 | 202 s->buf_pos=pos; // byte position in sector |
203 return 1; | |
204 } | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
205 |
1999 | 206 // if(pos==s->buf_len) printf("XXX Seek to last byte of file -> EOF\n"); |
207 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
208 #ifdef _LARGEFILE_SOURCE |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
209 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
|
210 #else |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
211 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
|
212 #endif |
1 | 213 return 0; |
214 } | |
215 | |
216 | |
217 void stream_reset(stream_t *s){ | |
218 if(s->eof){ | |
219 s->pos=0; //ftell(f); | |
220 // s->buf_pos=s->buf_len=0; | |
221 s->eof=0; | |
222 } | |
223 //stream_seek(s,0); | |
224 } | |
225 | |
2144 | 226 stream_t* new_memory_stream(unsigned char* data,int len){ |
227 stream_t *s=malloc(sizeof(stream_t)+len); | |
228 s->fd=-1; | |
229 s->type=STREAMTYPE_MEMORY; | |
230 s->buf_pos=0; s->buf_len=len; | |
231 s->start_pos=0; s->end_pos=len; | |
232 stream_reset(s); | |
233 s->pos=len; | |
234 memcpy(s->buffer,data,len); | |
235 return s; | |
236 } | |
237 | |
1 | 238 stream_t* new_stream(int fd,int type){ |
239 stream_t *s=malloc(sizeof(stream_t)); | |
3291 | 240 if(s==NULL) return NULL; |
241 memset(s,0,sizeof(stream_t)); | |
242 | |
1 | 243 s->fd=fd; |
244 s->type=type; | |
180 | 245 s->buf_pos=s->buf_len=0; |
598 | 246 s->start_pos=s->end_pos=0; |
1642 | 247 s->priv=NULL; |
2322 | 248 s->cache_pid=0; |
1 | 249 stream_reset(s); |
250 return s; | |
251 } | |
252 | |
253 void free_stream(stream_t *s){ | |
4464 | 254 printf("\n*** free_stream() called ***\n"); |
4893 | 255 if(s->cache_pid) { |
256 kill(s->cache_pid,SIGTERM); | |
257 waitpid(s->cache_pid,NULL,0); | |
258 } | |
1642 | 259 if(s->priv) free(s->priv); |
1 | 260 free(s); |
261 } | |
262 | |
5133
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
263 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
|
264 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
|
265 s->priv = ds; |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
266 return s; |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
267 } |