35 #define IO_BUFFER_SIZE 32768
42 #define SHORT_SEEK_THRESHOLD 4096
47 return prev ? NULL : s->
opaque;
78 int64_t (*seek)(
void *opaque, int64_t
offset,
int whence))
100 s->
pos = buffer_size;
110 unsigned char *buffer,
116 int64_t (*seek)(
void *opaque, int64_t
offset,
int whence))
204 whence &= ~AVSEEK_FORCE;
211 if (whence != SEEK_CUR && whence != SEEK_SET)
214 if (whence == SEEK_CUR) {
220 offset1 = offset - pos;
229 (whence != SEEK_END || force)) {
244 if ((res = s->
seek(s->
opaque, offset, SEEK_SET)) < 0)
272 if ((size = s->
seek(s->
opaque, -1, SEEK_END)) < 0)
312 avio_write(s, (
const unsigned char *) str, len);
357 avio_wl32(s, (uint32_t)(val & 0xffffffff));
364 avio_wb32(s, (uint32_t)(val & 0xffffffff));
424 len = max_buffer_size;
460 unsigned long (*update_checksum)(
unsigned long c,
const uint8_t *p,
unsigned int len),
461 unsigned long checksum)
627 if (c && i < maxlen-1)
629 }
while (c !=
'\n' && c);
642 buflen =
FFMIN(buflen - 1, maxlen);
643 for (i = 0; i < buflen; i++)
647 for (; i < maxlen; i++)
653 #define GET_STR16(type, read) \
654 int avio_get_str16 ##type(AVIOContext *pb, int maxlen, char *buf, int buflen)\
659 return AVERROR(EINVAL); \
660 while (ret + 1 < maxlen) {\
663 GET_UTF16(ch, (ret += 2) <= maxlen ? read(pb) : 0, break;)\
666 PUT_UTF8(ch, tmp, if (q - buf < buflen - 1) *q++ = tmp;)\
691 val= (val<<7) + (tmp&127);
699 int buffer_size, max_packet_size;
702 if (max_packet_size) {
703 buffer_size = max_packet_size;
719 (*s)->max_packet_size = max_packet_size;
722 (*s)->read_seek = (int64_t (*)(
void *, int, int64_t, int))h->
prot->
url_read_seek;
736 if (buf_size < s->buffer_size || s->
seekable)
784 int64_t buffer_start;
786 int overlap, new_size, alloc_size;
797 if ((buffer_start = s->
pos - buffer_size) > buf_size) {
802 overlap = buf_size - buffer_start;
803 new_size = buf_size + buffer_size - overlap;
806 if (alloc_size > buf_size)
807 if (!(buf = (*bufp) =
av_realloc_f(buf, 1, alloc_size)))
810 if (new_size > buf_size) {
811 memcpy(buf + buf_size, s->
buffer + overlap, buffer_size - overlap);
828 return avio_open2(s, filename, flags, NULL, NULL);
837 err =
ffurl_open(&h, filename, flags, int_cb, options);
880 ret =
vsnprintf(buf,
sizeof(buf), fmt, ap);
894 int64_t timestamp,
int flags)
900 ret = s->
read_seek(h, stream_index, timestamp, flags);
904 pos = s->
seek(h, 0, SEEK_CUR);
907 else if (pos !=
AVERROR(ENOSYS))
925 unsigned new_size, new_allocated_size;
928 new_size = d->
pos + buf_size;
930 if (new_size < d->pos || new_size > INT_MAX/2)
932 while (new_size > new_allocated_size) {
933 if (!new_allocated_size)
934 new_allocated_size = new_size;
936 new_allocated_size += new_allocated_size / 2 + 1;
945 memcpy(d->
buffer + d->
pos, buf, buf_size);
954 unsigned char buf1[4];
971 if (whence == SEEK_CUR)
973 else if (whence == SEEK_END)
975 if (offset < 0 || offset > 0x7fffffffLL)
984 unsigned io_buffer_size = max_packet_size ? max_packet_size : 1024;
986 if (
sizeof(
DynBuffer) + io_buffer_size < io_buffer_size)
999 (*s)->max_packet_size = max_packet_size;
1010 if (max_packet_size <= 0)
1034 return size - padding;