annotate libmpdemux/stream.c @ 9810:b68bad6e41ad

10l
author pontscho
date Thu, 03 Apr 2003 12:00:50 +0000
parents 2f02809d32a8
children 99b9b8eeecaf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1428
a90d889eb649 largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents: 1177
diff changeset
1
1430
1728d249c783 missing unistd.h (requires for off_t under freebsd)
arpi
parents: 1428
diff changeset
2 #include <stdio.h>
1728d249c783 missing unistd.h (requires for off_t under freebsd)
arpi
parents: 1428
diff changeset
3 #include <stdlib.h>
1728d249c783 missing unistd.h (requires for off_t under freebsd)
arpi
parents: 1428
diff changeset
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
02449faf87dd MINGW32 port
faust3
parents: 9794
diff changeset
8 #ifndef __MINGW32__
1428
a90d889eb649 largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents: 1177
diff changeset
9 #include <sys/ioctl.h>
6814
6863033786d1 warning fixes
atmos4
parents: 6810
diff changeset
10 #include <sys/wait.h>
9798
02449faf87dd MINGW32 port
faust3
parents: 9794
diff changeset
11 #endif
1428
a90d889eb649 largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents: 1177
diff changeset
12 #include <fcntl.h>
2322
e22ec6fce385 cache2 support
arpi
parents: 2310
diff changeset
13 #include <signal.h>
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
14 #include <strings.h>
578
c2377cd0069f something moved to brand new stream.h
arpi_esp
parents: 537
diff changeset
15
1430
1728d249c783 missing unistd.h (requires for off_t under freebsd)
arpi
parents: 1428
diff changeset
16 #include "config.h"
1973
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1642
diff changeset
17 #include "mp_msg.h"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1642
diff changeset
18 #include "help_mp.h"
9380
edfe34c5405d linux->osdep
arpi
parents: 8929
diff changeset
19 #include "../osdep/shmem.h"
578
c2377cd0069f something moved to brand new stream.h
arpi_esp
parents: 537
diff changeset
20
c2377cd0069f something moved to brand new stream.h
arpi_esp
parents: 537
diff changeset
21 #include "stream.h"
5133
9841a86d66f9 Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents: 4893
diff changeset
22 #include "demuxer.h"
578
c2377cd0069f something moved to brand new stream.h
arpi_esp
parents: 537
diff changeset
23
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
24 #include "../m_option.h"
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
25 #include "../m_struct.h"
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
26
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
27
578
c2377cd0069f something moved to brand new stream.h
arpi_esp
parents: 537
diff changeset
28 extern int verbose; // defined in mplayer.c
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
29
8812
f6456b177fdc vcd_read_cue.h -> cue_read.c+h
arpi
parents: 8782
diff changeset
30 #include "cue_read.h"
f6456b177fdc vcd_read_cue.h -> cue_read.c+h
arpi
parents: 8782
diff changeset
31
3261
caac174877b7 using #ifdef HAVE_VCD
arpi
parents: 3044
diff changeset
32 #ifdef HAVE_VCD
caac174877b7 using #ifdef HAVE_VCD
arpi
parents: 3044
diff changeset
33
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents: 692
diff changeset
34 #ifdef __FreeBSD__
2310
9e059416eea6 libdemuxer...
arpi
parents: 2144
diff changeset
35 #include "vcd_read_fbsd.h"
5872
02576893af2a OpenBSD, NetBSD portability patches by
arpi
parents: 5472
diff changeset
36 #elif defined(__NetBSD__)
02576893af2a OpenBSD, NetBSD portability patches by
arpi
parents: 5472
diff changeset
37 #include "vcd_read_nbsd.h"
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents: 692
diff changeset
38 #else
2310
9e059416eea6 libdemuxer...
arpi
parents: 2144
diff changeset
39 #include "vcd_read.h"
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents: 692
diff changeset
40 #endif
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
41
3261
caac174877b7 using #ifdef HAVE_VCD
arpi
parents: 3044
diff changeset
42 #endif
caac174877b7 using #ifdef HAVE_VCD
arpi
parents: 3044
diff changeset
43
8812
f6456b177fdc vcd_read_cue.h -> cue_read.c+h
arpi
parents: 8782
diff changeset
44 //#include "vcd_read_bincue.h"
8782
6af7a6595cc9 cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents: 8524
diff changeset
45
1595
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
46 #ifdef USE_DVDREAD
8344
85165f5c2f7b dvd_* declarations fixed to matc with open.c
arpi
parents: 7630
diff changeset
47 int dvd_read_sector(dvd_priv_t *d,unsigned char* data);
85165f5c2f7b dvd_* declarations fixed to matc with open.c
arpi
parents: 7630
diff changeset
48 void dvd_seek(dvd_priv_t *d,int pos);
6814
6863033786d1 warning fixes
atmos4
parents: 6810
diff changeset
49 void dvd_close(dvd_priv_t *d);
1595
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
50 #endif
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
51
6384
f0b933918a22 Support for playing audio cds using cdparanoia. Include a raw audio
albeu
parents: 6300
diff changeset
52 #ifdef HAVE_CDDA
f0b933918a22 Support for playing audio cds using cdparanoia. Include a raw audio
albeu
parents: 6300
diff changeset
53 int read_cdda(stream_t* s);
f0b933918a22 Support for playing audio cds using cdparanoia. Include a raw audio
albeu
parents: 6300
diff changeset
54 void seek_cdda(stream_t* s);
f0b933918a22 Support for playing audio cds using cdparanoia. Include a raw audio
albeu
parents: 6300
diff changeset
55 void close_cdda(stream_t* s);
f0b933918a22 Support for playing audio cds using cdparanoia. Include a raw audio
albeu
parents: 6300
diff changeset
56 #endif
f0b933918a22 Support for playing audio cds using cdparanoia. Include a raw audio
albeu
parents: 6300
diff changeset
57
7630
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
58 #ifdef LIBSMBCLIENT
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
59 #include "libsmbclient.h"
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
60 #endif
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
61
9810
pontscho
parents: 9801
diff changeset
62 #ifdef HAVE_CDDA
9801
2f02809d32a8 URL is cdda://tracks[:speed][/device]
albeu
parents: 9798
diff changeset
63 extern stream_info_t stream_info_cdda;
9810
pontscho
parents: 9801
diff changeset
64 #endif
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
65 extern stream_info_t stream_info_file;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
66
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
67 stream_info_t* auto_open_streams[] = {
9810
pontscho
parents: 9801
diff changeset
68 #ifdef HAVE_CDDA
9801
2f02809d32a8 URL is cdda://tracks[:speed][/device]
albeu
parents: 9798
diff changeset
69 &stream_info_cdda,
9810
pontscho
parents: 9801
diff changeset
70 #endif
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
71 &stream_info_file,
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
72 NULL
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
73 };
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
74
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
75 stream_t* open_stream_plugin(stream_info_t* sinfo,char* filename,int mode,
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
76 char** options, int* file_format, int* ret) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
77 void* arg = NULL;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
78 stream_t* s;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
79 m_struct_t* desc = (m_struct_t*)sinfo->opts;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
80
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
81 // Parse options
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
82 if(desc) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
83 arg = m_struct_alloc(desc);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
84 if(sinfo->opts_url) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
85 m_option_t url_opt =
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
86 { "stream url", arg , CONF_TYPE_CUSTOM_URL, 0, 0 ,0, sinfo->opts };
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
87 if(m_option_parse(&url_opt,"stream url",filename,arg,M_CONFIG_FILE) < 0) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
88 mp_msg(MSGT_OPEN,MSGL_ERR, "URL parsing failed on url %s\n",filename);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
89 m_struct_free(desc,arg);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
90 return NULL;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
91 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
92 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
93 if(options) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
94 int i;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
95 for(i = 0 ; options[i] != NULL ; i += 2) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
96 mp_msg(MSGT_OPEN,MSGL_DBG2, "Set stream arg %s=%s\n",
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
97 options[i],options[i+1]);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
98 if(!m_struct_set(desc,arg,options[i],options[i+1]))
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
99 mp_msg(MSGT_OPEN,MSGL_WARN, "Failed to set stream option %s=%s\n",
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
100 options[i],options[i+1]);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
101 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
102 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
103 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
104 s = new_stream(-2,-2);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
105 s->url=strdup(filename);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
106 s->flags |= mode;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
107 *ret = sinfo->open(s,mode,arg,file_format);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
108 if((*ret) != STREAM_OK) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
109 free(s->url);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
110 free(s);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
111 return NULL;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
112 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
113 if(s->type <= -2)
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
114 mp_msg(MSGT_OPEN,MSGL_WARN, "Warning streams need a type !!!!\n");
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
115 if(s->flags & STREAM_SEEK && !s->seek)
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
116 s->flags &= ~STREAM_SEEK;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
117 if(s->seek && !(s->flags & STREAM_SEEK))
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
118 s->flags &= STREAM_SEEK;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
119
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
120
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
121 mp_msg(MSGT_OPEN,MSGL_V, "STREAM: [%s] %s\n",sinfo->name,filename);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
122 mp_msg(MSGT_OPEN,MSGL_V, "STREAM: Description: %s\n",sinfo->info);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
123 mp_msg(MSGT_OPEN,MSGL_V, "STREAM: Author: %s\n", sinfo->author);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
124 mp_msg(MSGT_OPEN,MSGL_V, "STREAM: Comment: %s\n", sinfo->comment);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
125
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
126 return s;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
127 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
128
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
129
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
130 stream_t* open_stream_full(char* filename,int mode, char** options, int* file_format) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
131 int i,j,l,r;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
132 stream_info_t* sinfo;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
133 stream_t* s;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
134
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
135 for(i = 0 ; auto_open_streams[i] ; i++) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
136 sinfo = auto_open_streams[i];
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
137 if(!sinfo->protocols) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
138 mp_msg(MSGT_OPEN,MSGL_WARN, "Stream type %s have protocols == NULL, it's a bug\n");
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
139 continue;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
140 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
141 for(j = 0 ; sinfo->protocols[j] ; j++) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
142 l = strlen(sinfo->protocols[j]);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
143 // l == 0 => Don't do protocol matching (ie network and filenames)
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
144 if((l == 0) || ((strncmp(sinfo->protocols[j],filename,l) == 0) &&
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
145 (strncmp("://",filename+l,3) == 0))) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
146 *file_format = DEMUXER_TYPE_UNKNOWN;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
147 s = open_stream_plugin(sinfo,filename,mode,options,file_format,&r);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
148 if(s) return s;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
149 if(r != STREAM_UNSUPORTED) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
150 mp_msg(MSGT_OPEN,MSGL_ERR, "Failed to open %s\n",filename);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
151 return NULL;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
152 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
153 break;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
154 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
155 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
156 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
157
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
158 mp_msg(MSGT_OPEN,MSGL_ERR, "No stream found to handle url %s\n",filename);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
159 return NULL;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
160 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
161
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
162 //=================== STREAMER =========================
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
163
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
164 int stream_fill_buffer(stream_t *s){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
165 int len;
9787
c3b63fb0e8db Added a test for "s->fd == NULL" to the start of "stream_fill_buffer()".
rsf
parents: 9610
diff changeset
166 if (s->fd == NULL || s->eof) { s->buf_pos = s->buf_len = 0; return 0; }
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
167 switch(s->type){
7630
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
168 #ifdef LIBSMBCLIENT
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
169 case STREAMTYPE_SMB:
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
170 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
171 break;
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
172 #endif
692
14a2f35921a0 allow playing from stdin
arpi_esp
parents: 598
diff changeset
173 case STREAMTYPE_STREAM:
3044
606bb6943ae9 Added a network read function call and a seek network function call.
bertrand
parents: 2790
diff changeset
174 #ifdef STREAMING
606bb6943ae9 Added a network read function call and a seek network function call.
bertrand
parents: 2790
diff changeset
175 if( s->streaming_ctrl!=NULL ) {
606bb6943ae9 Added a network read function call and a seek network function call.
bertrand
parents: 2790
diff changeset
176 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
177 } else {
606bb6943ae9 Added a network read function call and a seek network function call.
bertrand
parents: 2790
diff changeset
178 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
179 }
606bb6943ae9 Added a network read function call and a seek network function call.
bertrand
parents: 2790
diff changeset
180 #else
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
181 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
182 #endif
3261
caac174877b7 using #ifdef HAVE_VCD
arpi
parents: 3044
diff changeset
183 #ifdef HAVE_VCD
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
184 case STREAMTYPE_VCD:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
185 len=vcd_read(s->fd,s->buffer);break;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
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
4bd766a5632b dvdnav functions moved out to dvdnav_steram.c
arpi
parents: 5382
diff changeset
191 dvdnav_stream_read((dvdnav_priv_t*)s->priv,s->buffer,&len);
4bd766a5632b dvdnav functions moved out to dvdnav_steram.c
arpi
parents: 5382
diff changeset
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
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
196 #ifdef USE_DVDREAD
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
197 case STREAMTYPE_DVD: {
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
198 off_t pos=dvd_read_sector(s->priv,s->buffer);
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
199 if(pos>=0){
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
200 len=2048; // full sector
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
201 s->pos=2048*pos-len;
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
202 } else len=-1; // error
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
203 break;
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
204 }
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
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
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9380
diff changeset
209
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9380
diff changeset
210 #ifdef HAS_DVBIN_SUPPORT
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9380
diff changeset
211 case STREAMTYPE_DVB:
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9380
diff changeset
212 len = dvb_streaming_read(s->fd, s->buffer, STREAM_BUFFER_SIZE, s->priv);
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9380
diff changeset
213 break;
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9380
diff changeset
214 #endif
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9380
diff changeset
215
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9380
diff changeset
216
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9380
diff changeset
217
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
218 default:
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
219 len= s->fill_buffer ? s->fill_buffer(s,s->buffer,STREAM_BUFFER_SIZE) : 0;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
220 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
221 if(len<=0){ s->eof=1; s->buf_pos=s->buf_len=0; return 0; }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
222 s->buf_pos=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
223 s->buf_len=len;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
224 s->pos+=len;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
225 // printf("[%d]",len);fflush(stdout);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
226 return len;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
227 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
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
6863033786d1 warning fixes
atmos4
parents: 6810
diff changeset
230 off_t newpos=0;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
231
2144
99f079ff9374 new_memory_stream() added
arpi
parents: 2050
diff changeset
232 // if(verbose>=3) printf("seek_long to 0x%X\n",(unsigned int)pos);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
233
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
234 s->buf_pos=s->buf_len=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
235
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
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
14a2f35921a0 allow playing from stdin
arpi_esp
parents: 598
diff changeset
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
888a85621f50 preliminary DVD support using libcss
lgb
parents: 180
diff changeset
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
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
244 case STREAMTYPE_VCD:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
245 newpos=(pos/VCD_SECTOR_DATA)*VCD_SECTOR_DATA;break;
8782
6af7a6595cc9 cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents: 8524
diff changeset
246 case STREAMTYPE_VCDBINCUE:
6af7a6595cc9 cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents: 8524
diff changeset
247 newpos=(pos/VCD_SECTOR_DATA)*VCD_SECTOR_DATA;break;
1595
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
248 case STREAMTYPE_DVD:
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
249 newpos=pos/2048; newpos*=2048; break;
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
250 default:
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
251 // Round on sector size
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
252 if(s->sector_size)
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
253 newpos=(pos/s->sector_size)*s->sector_size;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
254 else { // Otherwise on the buffer size
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
255 #ifdef _LARGEFILE_SOURCE
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
256 newpos=pos&(~((long long)STREAM_BUFFER_SIZE-1));break;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
257 #else
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
258 newpos=pos&(~(STREAM_BUFFER_SIZE-1));break;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
259 #endif
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
260 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
261 break;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
262 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
263
2050
18f4dd5d568f -Wall warnings fixed
arpi
parents: 1999
diff changeset
264 if(verbose>=3){
18f4dd5d568f -Wall warnings fixed
arpi
parents: 1999
diff changeset
265 #ifdef _LARGEFILE_SOURCE
18f4dd5d568f -Wall warnings fixed
arpi
parents: 1999
diff changeset
266 printf("s->pos=%llX newpos=%llX new_bufpos=%llX buflen=%X \n",
18f4dd5d568f -Wall warnings fixed
arpi
parents: 1999
diff changeset
267 (long long)s->pos,(long long)newpos,(long long)pos,s->buf_len);
18f4dd5d568f -Wall warnings fixed
arpi
parents: 1999
diff changeset
268 #else
18f4dd5d568f -Wall warnings fixed
arpi
parents: 1999
diff changeset
269 printf("s->pos=%X newpos=%X new_bufpos=%X buflen=%X \n",
18f4dd5d568f -Wall warnings fixed
arpi
parents: 1999
diff changeset
270 (unsigned int)s->pos,newpos,pos,s->buf_len);
18f4dd5d568f -Wall warnings fixed
arpi
parents: 1999
diff changeset
271 #endif
18f4dd5d568f -Wall warnings fixed
arpi
parents: 1999
diff changeset
272 }
18f4dd5d568f -Wall warnings fixed
arpi
parents: 1999
diff changeset
273
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
274 pos-=newpos;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
275
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
276 if(newpos==0 || newpos!=s->pos){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
277 switch(s->type){
7630
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
278 #ifdef LIBSMBCLIENT
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
279 case STREAMTYPE_SMB:
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
280 s->pos=newpos; // real seek
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
281 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
282 break;
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
283 #endif
3261
caac174877b7 using #ifdef HAVE_VCD
arpi
parents: 3044
diff changeset
284 #ifdef HAVE_VCD
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
285 case STREAMTYPE_VCD:
692
14a2f35921a0 allow playing from stdin
arpi_esp
parents: 598
diff changeset
286 s->pos=newpos; // real seek
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
287 vcd_set_msf(s->pos/VCD_SECTOR_DATA);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
288 break;
3261
caac174877b7 using #ifdef HAVE_VCD
arpi
parents: 3044
diff changeset
289 #endif
8782
6af7a6595cc9 cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents: 8524
diff changeset
290 case STREAMTYPE_VCDBINCUE:
6af7a6595cc9 cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents: 8524
diff changeset
291 s->pos=newpos; // real seek
6af7a6595cc9 cdrwin-style bin/cue VCD image support (-vcd <track> -cuefile file.cue)
arpi
parents: 8524
diff changeset
292 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
293 break;
5472
4bd766a5632b dvdnav functions moved out to dvdnav_steram.c
arpi
parents: 5382
diff changeset
294 #ifdef USE_DVDNAV
4bd766a5632b dvdnav functions moved out to dvdnav_steram.c
arpi
parents: 5382
diff changeset
295 case STREAMTYPE_DVDNAV: {
4bd766a5632b dvdnav functions moved out to dvdnav_steram.c
arpi
parents: 5382
diff changeset
296 if (newpos==0) {
4bd766a5632b dvdnav functions moved out to dvdnav_steram.c
arpi
parents: 5382
diff changeset
297 if (dvdnav_stream_reset((dvdnav_priv_t*)s->priv))
4bd766a5632b dvdnav functions moved out to dvdnav_steram.c
arpi
parents: 5382
diff changeset
298 s->pos=0;
4bd766a5632b dvdnav functions moved out to dvdnav_steram.c
arpi
parents: 5382
diff changeset
299 }
4bd766a5632b dvdnav functions moved out to dvdnav_steram.c
arpi
parents: 5382
diff changeset
300 if(newpos!=s->pos){
4bd766a5632b dvdnav functions moved out to dvdnav_steram.c
arpi
parents: 5382
diff changeset
301 mp_msg(MSGT_STREAM,MSGL_INFO,"Cannot seek in DVDNAV streams yet!\n");
4bd766a5632b dvdnav functions moved out to dvdnav_steram.c
arpi
parents: 5382
diff changeset
302 return 1;
4bd766a5632b dvdnav functions moved out to dvdnav_steram.c
arpi
parents: 5382
diff changeset
303 }
4bd766a5632b dvdnav functions moved out to dvdnav_steram.c
arpi
parents: 5382
diff changeset
304 break;
4bd766a5632b dvdnav functions moved out to dvdnav_steram.c
arpi
parents: 5382
diff changeset
305 }
4bd766a5632b dvdnav functions moved out to dvdnav_steram.c
arpi
parents: 5382
diff changeset
306 #endif
1595
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
307 #ifdef USE_DVDREAD
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
308 case STREAMTYPE_DVD:
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
309 s->pos=newpos; // real seek
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
310 dvd_seek(s->priv,s->pos/2048);
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
311 break;
1918610d2802 seeking in DVD
arpi
parents: 1430
diff changeset
312 #endif
692
14a2f35921a0 allow playing from stdin
arpi_esp
parents: 598
diff changeset
313 case STREAMTYPE_STREAM:
14a2f35921a0 allow playing from stdin
arpi_esp
parents: 598
diff changeset
314 //s->pos=newpos; // real seek
3044
606bb6943ae9 Added a network read function call and a seek network function call.
bertrand
parents: 2790
diff changeset
315 // 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
316 // 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
317 // doesn't support seeking.
606bb6943ae9 Added a network read function call and a seek network function call.
bertrand
parents: 2790
diff changeset
318 #ifdef STREAMING
8929
c5ca1ae42555 check if seeking supported, otherwise fallback to null reading
arpi
parents: 8812
diff changeset
319 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
320 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
321 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
322 return 1;
606bb6943ae9 Added a network read function call and a seek network function call.
bertrand
parents: 2790
diff changeset
323 }
606bb6943ae9 Added a network read function call and a seek network function call.
bertrand
parents: 2790
diff changeset
324 }
606bb6943ae9 Added a network read function call and a seek network function call.
bertrand
parents: 2790
diff changeset
325 #else
692
14a2f35921a0 allow playing from stdin
arpi_esp
parents: 598
diff changeset
326 if(newpos<s->pos){
1973
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1642
diff changeset
327 mp_msg(MSGT_STREAM,MSGL_INFO,"Cannot seek backward in linear streams!\n");
692
14a2f35921a0 allow playing from stdin
arpi_esp
parents: 598
diff changeset
328 return 1;
14a2f35921a0 allow playing from stdin
arpi_esp
parents: 598
diff changeset
329 }
14a2f35921a0 allow playing from stdin
arpi_esp
parents: 598
diff changeset
330 while(s->pos<newpos){
14a2f35921a0 allow playing from stdin
arpi_esp
parents: 598
diff changeset
331 if(stream_fill_buffer(s)<=0) break; // EOF
14a2f35921a0 allow playing from stdin
arpi_esp
parents: 598
diff changeset
332 }
3044
606bb6943ae9 Added a network read function call and a seek network function call.
bertrand
parents: 2790
diff changeset
333 #endif
692
14a2f35921a0 allow playing from stdin
arpi_esp
parents: 598
diff changeset
334 break;
7408
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7407
diff changeset
335 default:
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
336 // This should at the beginning as soon as all streams are converted
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
337 if(!s->seek)
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
338 return 0;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
339 // Now seek
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
340 if(!s->seek(s,newpos)) {
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
341 mp_msg(MSGT_STREAM,MSGL_ERR, "Seek failed\n");
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
342 return 0;
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
343 }
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
344 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
345 // putchar('.');fflush(stdout);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
346 //} else {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
347 // putchar('%');fflush(stdout);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
348 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
349
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
350 stream_fill_buffer(s);
1999
0c45328c9f8b fixed seek to EOF pos
arpi
parents: 1973
diff changeset
351 if(pos>=0 && pos<=s->buf_len){
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
352 s->buf_pos=pos; // byte position in sector
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
353 return 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
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
0c45328c9f8b fixed seek to EOF pos
arpi
parents: 1973
diff changeset
356 // if(pos==s->buf_len) printf("XXX Seek to last byte of file -> EOF\n");
0c45328c9f8b fixed seek to EOF pos
arpi
parents: 1973
diff changeset
357
1428
a90d889eb649 largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents: 1177
diff changeset
358 #ifdef _LARGEFILE_SOURCE
1973
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1642
diff changeset
359 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
360 #else
1973
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1642
diff changeset
361 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
362 #endif
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
363 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
364 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
365
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
366
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
367 void stream_reset(stream_t *s){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
368 if(s->eof){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
369 s->pos=0; //ftell(f);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
370 // s->buf_pos=s->buf_len=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
371 s->eof=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
372 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
373 //stream_seek(s,0);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
374 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
375
2144
99f079ff9374 new_memory_stream() added
arpi
parents: 2050
diff changeset
376 stream_t* new_memory_stream(unsigned char* data,int len){
99f079ff9374 new_memory_stream() added
arpi
parents: 2050
diff changeset
377 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
378 memset(s,0,sizeof(stream_t));
2144
99f079ff9374 new_memory_stream() added
arpi
parents: 2050
diff changeset
379 s->fd=-1;
99f079ff9374 new_memory_stream() added
arpi
parents: 2050
diff changeset
380 s->type=STREAMTYPE_MEMORY;
99f079ff9374 new_memory_stream() added
arpi
parents: 2050
diff changeset
381 s->buf_pos=0; s->buf_len=len;
99f079ff9374 new_memory_stream() added
arpi
parents: 2050
diff changeset
382 s->start_pos=0; s->end_pos=len;
99f079ff9374 new_memory_stream() added
arpi
parents: 2050
diff changeset
383 stream_reset(s);
99f079ff9374 new_memory_stream() added
arpi
parents: 2050
diff changeset
384 s->pos=len;
99f079ff9374 new_memory_stream() added
arpi
parents: 2050
diff changeset
385 memcpy(s->buffer,data,len);
99f079ff9374 new_memory_stream() added
arpi
parents: 2050
diff changeset
386 return s;
99f079ff9374 new_memory_stream() added
arpi
parents: 2050
diff changeset
387 }
99f079ff9374 new_memory_stream() added
arpi
parents: 2050
diff changeset
388
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
389 stream_t* new_stream(int fd,int type){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
390 stream_t *s=malloc(sizeof(stream_t));
3291
2122a13b5a29 fixed startup crash
iive
parents: 3261
diff changeset
391 if(s==NULL) return NULL;
2122a13b5a29 fixed startup crash
iive
parents: 3261
diff changeset
392 memset(s,0,sizeof(stream_t));
2122a13b5a29 fixed startup crash
iive
parents: 3261
diff changeset
393
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
394 s->fd=fd;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
395 s->type=type;
180
afa2c05cfe43 terrible fatal bug fixed
arpi_esp
parents: 1
diff changeset
396 s->buf_pos=s->buf_len=0;
598
c7117e17e20b OSD seekbar fixed for mpeg/VCD
arpi_esp
parents: 578
diff changeset
397 s->start_pos=s->end_pos=0;
1642
78fa0713b823 free'ing priv struct
arpi
parents: 1595
diff changeset
398 s->priv=NULL;
7407
8780415baa87 stream layer cleanup - part 1
arpi
parents: 7406
diff changeset
399 s->url=NULL;
2322
e22ec6fce385 cache2 support
arpi
parents: 2310
diff changeset
400 s->cache_pid=0;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
401 stream_reset(s);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
402 return s;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
403 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
404
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
405 void free_stream(stream_t *s){
6138
523014df7d32 big cosmetics patch, cleanup of messages printed by mplayer and libs.
arpi
parents: 5982
diff changeset
406 // printf("\n*** free_stream() called ***\n");
9798
02449faf87dd MINGW32 port
faust3
parents: 9794
diff changeset
407 #ifdef USE_STREAM_CACHE
4893
904cc3813582 Added waitpid in free_stream to avoid zombies
albeu
parents: 4464
diff changeset
408 if(s->cache_pid) {
5982
b61b22fbcd08 gui doesn't like exit() in forged process
arpi
parents: 5872
diff changeset
409 // kill(s->cache_pid,SIGTERM);
b61b22fbcd08 gui doesn't like exit() in forged process
arpi
parents: 5872
diff changeset
410 kill(s->cache_pid,SIGKILL);
4893
904cc3813582 Added waitpid in free_stream to avoid zombies
albeu
parents: 4464
diff changeset
411 waitpid(s->cache_pid,NULL,0);
6810
a4ed4e0464ba 10L free the cache
albeu
parents: 6479
diff changeset
412 shmem_free(s->cache_data);
4893
904cc3813582 Added waitpid in free_stream to avoid zombies
albeu
parents: 4464
diff changeset
413 }
9798
02449faf87dd MINGW32 port
faust3
parents: 9794
diff changeset
414 #endif
6300
c31d15532695 file descriptor leak - found by Marc Espie <espie@nerim.net>
arpi
parents: 6138
diff changeset
415 if(s->fd>0) close(s->fd);
6479
45ec7f24de06 Add uninit to the dvd stream.
albeu
parents: 6384
diff changeset
416 switch(s->type) {
7630
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
417 #ifdef LIBSMBCLIENT
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
418 case STREAMTYPE_SMB:
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
419 smbc_close(s->fd);
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
420 break;
4c51ce16c4a2 smb:// (samba client) support by Vladimir Moushkov <vlindos_mpdev@abv.bg>
arpi
parents: 7408
diff changeset
421 #endif
9610
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9380
diff changeset
422 #ifdef HAS_DVBIN_SUPPORT
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9380
diff changeset
423 case STREAMTYPE_DVB:
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9380
diff changeset
424 dvbin_close(s->priv);
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9380
diff changeset
425 break;
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9380
diff changeset
426 #endif
76c6d8f1ebf5 this is a combo patch that:
arpi
parents: 9380
diff changeset
427
6479
45ec7f24de06 Add uninit to the dvd stream.
albeu
parents: 6384
diff changeset
428 #ifdef USE_DVDREAD
45ec7f24de06 Add uninit to the dvd stream.
albeu
parents: 6384
diff changeset
429 case STREAMTYPE_DVD:
45ec7f24de06 Add uninit to the dvd stream.
albeu
parents: 6384
diff changeset
430 dvd_close(s->priv);
45ec7f24de06 Add uninit to the dvd stream.
albeu
parents: 6384
diff changeset
431 #endif
9794
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
432 default:
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
433 if(s->close) s->close(s);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
434 }
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
435 // Disabled atm, i don't like that. s->priv can be anything after all
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
436 // streams should destroy their priv on close
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
437 //if(s->priv) free(s->priv);
f67d87b2d3c7 Stream modularization, the first step.
albeu
parents: 9787
diff changeset
438 if(s->url) free(s->url);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
439 free(s);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
440 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
441
5133
9841a86d66f9 Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents: 4893
diff changeset
442 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
443 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
444 s->priv = ds;
9841a86d66f9 Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents: 4893
diff changeset
445 return s;
9841a86d66f9 Initial ogg demuxer. No seeking, a/v sync is broken. Support avi
albeu
parents: 4893
diff changeset
446 }