Mercurial > libavformat.hg
annotate avio.c @ 5295:08ec48911f20 libavformat
Last parameter in RTMP "play" call was optional and some servers seem not to
understand it, so drop it.
author | kostya |
---|---|
date | Sun, 18 Oct 2009 06:54:04 +0000 |
parents | 84a7b7a2f252 |
children | 9ca204496cb5 |
rev | line source |
---|---|
0 | 1 /* |
2 * Unbuffered io for ffmpeg system | |
3 * Copyright (c) 2001 Fabrice Bellard | |
4 * | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
905
diff
changeset
|
5 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
905
diff
changeset
|
6 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
905
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
0 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
905
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
0 | 11 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
905
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
0 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Lesser General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
905
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
885
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 20 */ |
3286 | 21 |
22 #include "libavutil/avstring.h" | |
23 #include "libavcodec/opt.h" | |
3994
4d5d9ac28e21
Only special-case absolute DOS paths on systems that support them.
ramiro
parents:
3973
diff
changeset
|
24 #include "os_support.h" |
0 | 25 #include "avformat.h" |
3136
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
26 |
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
27 #if LIBAVFORMAT_VERSION_MAJOR >= 53 |
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
28 /** @name Logging context. */ |
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
29 /*@{*/ |
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
30 static const char *urlcontext_to_name(void *ptr) |
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
31 { |
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
32 URLContext *h = (URLContext *)ptr; |
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
33 if(h->prot) return h->prot->name; |
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
34 else return "NULL"; |
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
35 } |
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
36 static const AVOption options[] = {{NULL}}; |
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
37 static const AVClass urlcontext_class = |
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
38 { "URLContext", urlcontext_to_name, options }; |
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
39 /*@}*/ |
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
40 #endif |
0 | 41 |
177 | 42 static int default_interrupt_cb(void); |
43 | |
0 | 44 URLProtocol *first_protocol = NULL; |
177 | 45 URLInterruptCB *url_interrupt_cb = default_interrupt_cb; |
0 | 46 |
2812 | 47 URLProtocol *av_protocol_next(URLProtocol *p) |
48 { | |
49 if(p) return p->next; | |
50 else return first_protocol; | |
51 } | |
52 | |
4488
724c0f6a52dc
Rename register_protocol() to av_register_protocol() and deprecate
stefano
parents:
3994
diff
changeset
|
53 int av_register_protocol(URLProtocol *protocol) |
0 | 54 { |
55 URLProtocol **p; | |
56 p = &first_protocol; | |
57 while (*p != NULL) p = &(*p)->next; | |
58 *p = protocol; | |
59 protocol->next = NULL; | |
60 return 0; | |
61 } | |
62 | |
4488
724c0f6a52dc
Rename register_protocol() to av_register_protocol() and deprecate
stefano
parents:
3994
diff
changeset
|
63 #if LIBAVFORMAT_VERSION_MAJOR < 53 |
724c0f6a52dc
Rename register_protocol() to av_register_protocol() and deprecate
stefano
parents:
3994
diff
changeset
|
64 int register_protocol(URLProtocol *protocol) |
724c0f6a52dc
Rename register_protocol() to av_register_protocol() and deprecate
stefano
parents:
3994
diff
changeset
|
65 { |
724c0f6a52dc
Rename register_protocol() to av_register_protocol() and deprecate
stefano
parents:
3994
diff
changeset
|
66 return av_register_protocol(protocol); |
724c0f6a52dc
Rename register_protocol() to av_register_protocol() and deprecate
stefano
parents:
3994
diff
changeset
|
67 } |
724c0f6a52dc
Rename register_protocol() to av_register_protocol() and deprecate
stefano
parents:
3994
diff
changeset
|
68 #endif |
724c0f6a52dc
Rename register_protocol() to av_register_protocol() and deprecate
stefano
parents:
3994
diff
changeset
|
69 |
3744
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
70 int url_open_protocol (URLContext **puc, struct URLProtocol *up, |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
71 const char *filename, int flags) |
0 | 72 { |
73 URLContext *uc; | |
74 int err; | |
75 | |
1648
90987914ad57
makes the filename member of the URLContext a pointer, so that the
gpoirier
parents:
1613
diff
changeset
|
76 uc = av_malloc(sizeof(URLContext) + strlen(filename) + 1); |
0 | 77 if (!uc) { |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1746
diff
changeset
|
78 err = AVERROR(ENOMEM); |
0 | 79 goto fail; |
80 } | |
3136
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
81 #if LIBAVFORMAT_VERSION_MAJOR >= 53 |
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
82 uc->av_class = &urlcontext_class; |
e38d5357f0d0
Add AVClass to URLContext at next major version bump
superdump
parents:
2914
diff
changeset
|
83 #endif |
1648
90987914ad57
makes the filename member of the URLContext a pointer, so that the
gpoirier
parents:
1613
diff
changeset
|
84 uc->filename = (char *) &uc[1]; |
19 | 85 strcpy(uc->filename, filename); |
0 | 86 uc->prot = up; |
87 uc->flags = flags; | |
88 uc->is_streamed = 0; /* default = not streamed */ | |
89 uc->max_packet_size = 0; /* default: stream file */ | |
90 err = up->url_open(uc, filename, flags); | |
91 if (err < 0) { | |
92 av_free(uc); | |
93 *puc = NULL; | |
94 return err; | |
95 } | |
3277 | 96 |
97 //We must be carefull here as url_seek() could be slow, for example for http | |
98 if( (flags & (URL_WRONLY | URL_RDWR)) | |
3744
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
99 || !strcmp(up->name, "file")) |
3277 | 100 if(!uc->is_streamed && url_seek(uc, 0, SEEK_SET) < 0) |
101 uc->is_streamed= 1; | |
0 | 102 *puc = uc; |
103 return 0; | |
104 fail: | |
105 *puc = NULL; | |
106 return err; | |
107 } | |
108 | |
3744
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
109 int url_open(URLContext **puc, const char *filename, int flags) |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
110 { |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
111 URLProtocol *up; |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
112 const char *p; |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
113 char proto_str[128], *q; |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
114 |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
115 p = filename; |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
116 q = proto_str; |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
117 while (*p != '\0' && *p != ':') { |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
118 /* protocols can only contain alphabetic chars */ |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
119 if (!isalpha(*p)) |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
120 goto file_proto; |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
121 if ((q - proto_str) < sizeof(proto_str) - 1) |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
122 *q++ = *p; |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
123 p++; |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
124 } |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
125 /* if the protocol has length 1, we consider it is a dos drive */ |
3994
4d5d9ac28e21
Only special-case absolute DOS paths on systems that support them.
ramiro
parents:
3973
diff
changeset
|
126 if (*p == '\0' || is_dos_path(filename)) { |
3744
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
127 file_proto: |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
128 strcpy(proto_str, "file"); |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
129 } else { |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
130 *q = '\0'; |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
131 } |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
132 |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
133 up = first_protocol; |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
134 while (up != NULL) { |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
135 if (!strcmp(proto_str, up->name)) |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
136 return url_open_protocol (puc, up, filename, flags); |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
137 up = up->next; |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
138 } |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
139 *puc = NULL; |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
140 return AVERROR(ENOENT); |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
141 } |
b140b68a3747
Implement url_open_protocol(), which is basiclly the former url_open()
rbultje
parents:
3286
diff
changeset
|
142 |
0 | 143 int url_read(URLContext *h, unsigned char *buf, int size) |
144 { | |
145 int ret; | |
146 if (h->flags & URL_WRONLY) | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
147 return AVERROR(EIO); |
0 | 148 ret = h->prot->url_read(h, buf, size); |
149 return ret; | |
150 } | |
151 | |
5004
84a7b7a2f252
Move function for reading whole specified amount of data from RTSP
kostya
parents:
4640
diff
changeset
|
152 int url_read_complete(URLContext *h, unsigned char *buf, int size) |
84a7b7a2f252
Move function for reading whole specified amount of data from RTSP
kostya
parents:
4640
diff
changeset
|
153 { |
84a7b7a2f252
Move function for reading whole specified amount of data from RTSP
kostya
parents:
4640
diff
changeset
|
154 int ret, len; |
84a7b7a2f252
Move function for reading whole specified amount of data from RTSP
kostya
parents:
4640
diff
changeset
|
155 |
84a7b7a2f252
Move function for reading whole specified amount of data from RTSP
kostya
parents:
4640
diff
changeset
|
156 len = 0; |
84a7b7a2f252
Move function for reading whole specified amount of data from RTSP
kostya
parents:
4640
diff
changeset
|
157 while (len < size) { |
84a7b7a2f252
Move function for reading whole specified amount of data from RTSP
kostya
parents:
4640
diff
changeset
|
158 ret = url_read(h, buf+len, size-len); |
84a7b7a2f252
Move function for reading whole specified amount of data from RTSP
kostya
parents:
4640
diff
changeset
|
159 if (ret < 1) |
84a7b7a2f252
Move function for reading whole specified amount of data from RTSP
kostya
parents:
4640
diff
changeset
|
160 return ret; |
84a7b7a2f252
Move function for reading whole specified amount of data from RTSP
kostya
parents:
4640
diff
changeset
|
161 len += ret; |
84a7b7a2f252
Move function for reading whole specified amount of data from RTSP
kostya
parents:
4640
diff
changeset
|
162 } |
84a7b7a2f252
Move function for reading whole specified amount of data from RTSP
kostya
parents:
4640
diff
changeset
|
163 return len; |
84a7b7a2f252
Move function for reading whole specified amount of data from RTSP
kostya
parents:
4640
diff
changeset
|
164 } |
84a7b7a2f252
Move function for reading whole specified amount of data from RTSP
kostya
parents:
4640
diff
changeset
|
165 |
0 | 166 int url_write(URLContext *h, unsigned char *buf, int size) |
167 { | |
168 int ret; | |
169 if (!(h->flags & (URL_WRONLY | URL_RDWR))) | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
170 return AVERROR(EIO); |
0 | 171 /* avoid sending too big packets */ |
172 if (h->max_packet_size && size > h->max_packet_size) | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
173 return AVERROR(EIO); |
0 | 174 ret = h->prot->url_write(h, buf, size); |
175 return ret; | |
176 } | |
177 | |
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3744
diff
changeset
|
178 int64_t url_seek(URLContext *h, int64_t pos, int whence) |
0 | 179 { |
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3744
diff
changeset
|
180 int64_t ret; |
0 | 181 |
182 if (!h->prot->url_seek) | |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1746
diff
changeset
|
183 return AVERROR(EPIPE); |
0 | 184 ret = h->prot->url_seek(h, pos, whence); |
185 return ret; | |
186 } | |
187 | |
188 int url_close(URLContext *h) | |
189 { | |
2757 | 190 int ret = 0; |
2710 | 191 if (!h) return 0; /* can happen when url_open fails */ |
0 | 192 |
2757 | 193 if (h->prot->url_close) |
194 ret = h->prot->url_close(h); | |
0 | 195 av_free(h); |
196 return ret; | |
197 } | |
198 | |
199 int url_exist(const char *filename) | |
200 { | |
201 URLContext *h; | |
202 if (url_open(&h, filename, URL_RDONLY) < 0) | |
203 return 0; | |
204 url_close(h); | |
205 return 1; | |
206 } | |
207 | |
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3744
diff
changeset
|
208 int64_t url_filesize(URLContext *h) |
0 | 209 { |
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3744
diff
changeset
|
210 int64_t pos, size; |
885 | 211 |
1612
a6eaa0762191
seekless filesize retrieving support in 7 lines of code, also doesnt break compatibility
michael
parents:
1358
diff
changeset
|
212 size= url_seek(h, 0, AVSEEK_SIZE); |
a6eaa0762191
seekless filesize retrieving support in 7 lines of code, also doesnt break compatibility
michael
parents:
1358
diff
changeset
|
213 if(size<0){ |
1613 | 214 pos = url_seek(h, 0, SEEK_CUR); |
1746
2649c0a9c037
protect the size=seek(SEEK_END,-1)+1 results with an if (.. < 0), else the
gpoirier
parents:
1648
diff
changeset
|
215 if ((size = url_seek(h, -1, SEEK_END)) < 0) |
2649c0a9c037
protect the size=seek(SEEK_END,-1)+1 results with an if (.. < 0), else the
gpoirier
parents:
1648
diff
changeset
|
216 return size; |
2649c0a9c037
protect the size=seek(SEEK_END,-1)+1 results with an if (.. < 0), else the
gpoirier
parents:
1648
diff
changeset
|
217 size++; |
1613 | 218 url_seek(h, pos, SEEK_SET); |
1612
a6eaa0762191
seekless filesize retrieving support in 7 lines of code, also doesnt break compatibility
michael
parents:
1358
diff
changeset
|
219 } |
0 | 220 return size; |
221 } | |
222 | |
4640
b34d9614b887
Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents:
4488
diff
changeset
|
223 int url_get_file_handle(URLContext *h) |
b34d9614b887
Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents:
4488
diff
changeset
|
224 { |
b34d9614b887
Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents:
4488
diff
changeset
|
225 if (!h->prot->url_get_file_handle) |
b34d9614b887
Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents:
4488
diff
changeset
|
226 return -1; |
b34d9614b887
Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents:
4488
diff
changeset
|
227 return h->prot->url_get_file_handle(h); |
b34d9614b887
Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents:
4488
diff
changeset
|
228 } |
b34d9614b887
Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents:
4488
diff
changeset
|
229 |
0 | 230 int url_get_max_packet_size(URLContext *h) |
231 { | |
232 return h->max_packet_size; | |
233 } | |
19 | 234 |
235 void url_get_filename(URLContext *h, char *buf, int buf_size) | |
236 { | |
2189 | 237 av_strlcpy(buf, h->filename, buf_size); |
19 | 238 } |
177 | 239 |
240 | |
241 static int default_interrupt_cb(void) | |
242 { | |
243 return 0; | |
244 } | |
245 | |
246 void url_set_interrupt_cb(URLInterruptCB *interrupt_cb) | |
247 { | |
248 if (!interrupt_cb) | |
249 interrupt_cb = default_interrupt_cb; | |
250 url_interrupt_cb = interrupt_cb; | |
251 } | |
2778
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
252 |
2839
b51319dd86e5
Merge recently added and still unused play and pause functions.
michael
parents:
2834
diff
changeset
|
253 int av_url_read_pause(URLContext *h, int pause) |
2778
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
254 { |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
255 if (!h->prot->url_read_pause) |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
256 return AVERROR(ENOSYS); |
2839
b51319dd86e5
Merge recently added and still unused play and pause functions.
michael
parents:
2834
diff
changeset
|
257 return h->prot->url_read_pause(h, pause); |
2778
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
258 } |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
259 |
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3744
diff
changeset
|
260 int64_t av_url_read_seek(URLContext *h, |
2778
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
261 int stream_index, int64_t timestamp, int flags) |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
262 { |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
263 if (!h->prot->url_read_seek) |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
264 return AVERROR(ENOSYS); |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
265 return h->prot->url_read_seek(h, stream_index, timestamp, flags); |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
266 } |