Mercurial > mplayer.hg
annotate libmpdemux/stream.c @ 5256:76f0ff2269a1
I knew I had a typo just as I commited :(
author | atmos4 |
---|---|
date | Thu, 21 Mar 2002 22:51:44 +0000 |
parents | 9841a86d66f9 |
children | 8a01cde9cf39 |
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 |
1595 | 62 #ifdef USE_DVDREAD |
63 case STREAMTYPE_DVD: { | |
64 off_t pos=dvd_read_sector(s->priv,s->buffer); | |
65 if(pos>=0){ | |
66 len=2048; // full sector | |
67 s->pos=2048*pos-len; | |
68 } else len=-1; // error | |
69 break; | |
70 } | |
71 #endif | |
2790 | 72 #ifdef USE_TV |
73 case STREAMTYPE_TV: | |
74 { | |
75 len = 0; | |
76 break; | |
77 } | |
78 #endif | |
5133
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
79 case STREAMTYPE_DS: |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
80 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
|
81 break; |
1 | 82 default: len=0; |
83 } | |
84 if(len<=0){ s->eof=1; s->buf_pos=s->buf_len=0; return 0; } | |
85 s->buf_pos=0; | |
86 s->buf_len=len; | |
87 s->pos+=len; | |
88 // printf("[%d]",len);fflush(stdout); | |
89 return len; | |
90 } | |
91 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
92 int stream_seek_long(stream_t *s,off_t pos){ |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
93 off_t newpos; |
1 | 94 |
2144 | 95 // if(verbose>=3) printf("seek_long to 0x%X\n",(unsigned int)pos); |
1 | 96 |
97 s->buf_pos=s->buf_len=0; | |
98 | |
99 switch(s->type){ | |
100 case STREAMTYPE_FILE: | |
692 | 101 case STREAMTYPE_STREAM: |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
102 #ifdef _LARGEFILE_SOURCE |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
103 newpos=pos&(~((long long)STREAM_BUFFER_SIZE-1));break; |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
104 #else |
492 | 105 newpos=pos&(~(STREAM_BUFFER_SIZE-1));break; |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
106 #endif |
1 | 107 case STREAMTYPE_VCD: |
108 newpos=(pos/VCD_SECTOR_DATA)*VCD_SECTOR_DATA;break; | |
1595 | 109 case STREAMTYPE_DVD: |
110 newpos=pos/2048; newpos*=2048; break; | |
1 | 111 } |
112 | |
2050 | 113 if(verbose>=3){ |
114 #ifdef _LARGEFILE_SOURCE | |
115 printf("s->pos=%llX newpos=%llX new_bufpos=%llX buflen=%X \n", | |
116 (long long)s->pos,(long long)newpos,(long long)pos,s->buf_len); | |
117 #else | |
118 printf("s->pos=%X newpos=%X new_bufpos=%X buflen=%X \n", | |
119 (unsigned int)s->pos,newpos,pos,s->buf_len); | |
120 #endif | |
121 } | |
122 | |
1 | 123 pos-=newpos; |
124 | |
125 if(newpos==0 || newpos!=s->pos){ | |
126 switch(s->type){ | |
127 case STREAMTYPE_FILE: | |
692 | 128 s->pos=newpos; // real seek |
1 | 129 if(lseek(s->fd,s->pos,SEEK_SET)<0) s->eof=1; |
130 break; | |
3261 | 131 #ifdef HAVE_VCD |
1 | 132 case STREAMTYPE_VCD: |
692 | 133 s->pos=newpos; // real seek |
1 | 134 #ifdef VCD_CACHE |
135 vcd_cache_seek(s->pos/VCD_SECTOR_DATA); | |
136 #else | |
137 vcd_set_msf(s->pos/VCD_SECTOR_DATA); | |
138 #endif | |
139 break; | |
3261 | 140 #endif |
1595 | 141 #ifdef USE_DVDREAD |
142 case STREAMTYPE_DVD: | |
143 s->pos=newpos; // real seek | |
144 dvd_seek(s->priv,s->pos/2048); | |
145 break; | |
146 #endif | |
692 | 147 case STREAMTYPE_STREAM: |
148 //s->pos=newpos; // real seek | |
3044
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
149 // 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
|
150 // 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
|
151 // doesn't support seeking. |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
152 #ifdef STREAMING |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
153 if( s->streaming_ctrl!=NULL ) { |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
154 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
|
155 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
|
156 return 1; |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
157 } |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
158 } |
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
159 #else |
692 | 160 if(newpos<s->pos){ |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
161 mp_msg(MSGT_STREAM,MSGL_INFO,"Cannot seek backward in linear streams!\n"); |
692 | 162 return 1; |
163 } | |
164 while(s->pos<newpos){ | |
165 if(stream_fill_buffer(s)<=0) break; // EOF | |
166 } | |
3044
606bb6943ae9
Added a network read function call and a seek network function call.
bertrand
parents:
2790
diff
changeset
|
167 #endif |
692 | 168 break; |
2790 | 169 #ifdef USE_TV |
170 case STREAMTYPE_TV: | |
171 s->pos=newpos; /* no sense */ | |
172 break; | |
173 #endif | |
1 | 174 } |
175 // putchar('.');fflush(stdout); | |
176 //} else { | |
177 // putchar('%');fflush(stdout); | |
178 } | |
179 | |
180 stream_fill_buffer(s); | |
1999 | 181 if(pos>=0 && pos<=s->buf_len){ |
1 | 182 s->buf_pos=pos; // byte position in sector |
183 return 1; | |
184 } | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
185 |
1999 | 186 // if(pos==s->buf_len) printf("XXX Seek to last byte of file -> EOF\n"); |
187 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1177
diff
changeset
|
188 #ifdef _LARGEFILE_SOURCE |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
189 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
|
190 #else |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1642
diff
changeset
|
191 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
|
192 #endif |
1 | 193 return 0; |
194 } | |
195 | |
196 | |
197 void stream_reset(stream_t *s){ | |
198 if(s->eof){ | |
199 s->pos=0; //ftell(f); | |
200 // s->buf_pos=s->buf_len=0; | |
201 s->eof=0; | |
202 } | |
203 //stream_seek(s,0); | |
204 } | |
205 | |
2144 | 206 stream_t* new_memory_stream(unsigned char* data,int len){ |
207 stream_t *s=malloc(sizeof(stream_t)+len); | |
208 s->fd=-1; | |
209 s->type=STREAMTYPE_MEMORY; | |
210 s->buf_pos=0; s->buf_len=len; | |
211 s->start_pos=0; s->end_pos=len; | |
212 stream_reset(s); | |
213 s->pos=len; | |
214 memcpy(s->buffer,data,len); | |
215 return s; | |
216 } | |
217 | |
1 | 218 stream_t* new_stream(int fd,int type){ |
219 stream_t *s=malloc(sizeof(stream_t)); | |
3291 | 220 if(s==NULL) return NULL; |
221 memset(s,0,sizeof(stream_t)); | |
222 | |
1 | 223 s->fd=fd; |
224 s->type=type; | |
180 | 225 s->buf_pos=s->buf_len=0; |
598 | 226 s->start_pos=s->end_pos=0; |
1642 | 227 s->priv=NULL; |
2322 | 228 s->cache_pid=0; |
1 | 229 stream_reset(s); |
230 return s; | |
231 } | |
232 | |
233 void free_stream(stream_t *s){ | |
4464 | 234 printf("\n*** free_stream() called ***\n"); |
4893 | 235 if(s->cache_pid) { |
236 kill(s->cache_pid,SIGTERM); | |
237 waitpid(s->cache_pid,NULL,0); | |
238 } | |
1642 | 239 if(s->priv) free(s->priv); |
1 | 240 free(s); |
241 } | |
242 | |
5133
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
243 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
|
244 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
|
245 s->priv = ds; |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
246 return s; |
9841a86d66f9
Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents:
4893
diff
changeset
|
247 } |