35 #define IO_BUFFER_SIZE 32768 
   42 #define SHORT_SEEK_THRESHOLD 4096 
   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))
 
  203     whence &= ~AVSEEK_FORCE;
 
  210     if (whence != SEEK_CUR && whence != SEEK_SET)
 
  213     if (whence == SEEK_CUR) {
 
  219     offset1 = offset - pos;
 
  228               (whence != SEEK_END || force)) {
 
  243         if ((res = s->
seek(s->
opaque, offset, SEEK_SET)) < 0)
 
  271         if ((size = s->
seek(s->
opaque, -1, SEEK_END)) < 0)
 
  311         avio_write(s, (
const unsigned char *) str, len);
 
  356     avio_wl32(s, (uint32_t)(val & 0xffffffff));
 
  363     avio_wb32(s, (uint32_t)(val & 0xffffffff));
 
  457                    unsigned long (*update_checksum)(
unsigned long c, 
const uint8_t *p, 
unsigned int len),
 
  458                    unsigned long checksum)
 
  624         if (c && i < maxlen-1)
 
  626     } 
while (c != 
'\n' && c);
 
  639     buflen = 
FFMIN(buflen - 1, maxlen);
 
  640     for (i = 0; i < buflen; i++)
 
  644     for (; i < maxlen; i++)
 
  650 #define GET_STR16(type, read) \ 
  651     int avio_get_str16 ##type(AVIOContext *pb, int maxlen, char *buf, int buflen)\ 
  656         return AVERROR(EINVAL); \ 
  657     while (ret + 1 < maxlen) {\ 
  660         GET_UTF16(ch, (ret += 2) <= maxlen ? read(pb) : 0, break;)\ 
  663         PUT_UTF8(ch, tmp, if (q - buf < buflen - 1) *q++ = tmp;)\ 
  688         val= (val<<7) + (tmp&127);
 
  696     int buffer_size, max_packet_size;
 
  699     if (max_packet_size) {
 
  700         buffer_size = max_packet_size; 
 
  716     (*s)->max_packet_size = max_packet_size;
 
  719         (*s)->read_seek  = (int64_t (*)(
void *, int, int64_t, int))h->
prot->
url_read_seek;
 
  756     int64_t buffer_start;
 
  758     int overlap, new_size, alloc_size;
 
  769     if ((buffer_start = s->
pos - buffer_size) > buf_size) {
 
  774     overlap = buf_size - buffer_start;
 
  775     new_size = buf_size + buffer_size - overlap;
 
  778     if (alloc_size > buf_size)
 
  779         if (!(buf = (*bufp) = 
av_realloc_f(buf, 1, alloc_size)))
 
  782     if (new_size > buf_size) {
 
  783         memcpy(buf + buf_size, s->
buffer + overlap, buffer_size - overlap);
 
  809     err = 
ffurl_open(&h, filename, flags, int_cb, options);
 
  850     ret = 
vsnprintf(buf, 
sizeof(buf), fmt, ap);
 
  864                        int64_t timestamp, 
int flags)
 
  870     ret = s->
read_seek(h, stream_index, timestamp, flags);
 
  874         pos = s->
seek(h, 0, SEEK_CUR);
 
  877         else if (pos != 
AVERROR(ENOSYS))
 
  895     unsigned new_size, new_allocated_size;
 
  898     new_size = d->
pos + buf_size;
 
  900     if (new_size < d->pos || new_size > INT_MAX/2)
 
  902     while (new_size > new_allocated_size) {
 
  903         if (!new_allocated_size)
 
  904             new_allocated_size = new_size;
 
  906             new_allocated_size += new_allocated_size / 2 + 1;
 
  915     memcpy(d->
buffer + d->
pos, buf, buf_size);
 
  924     unsigned char buf1[4];
 
  941     if (whence == SEEK_CUR)
 
  943     else if (whence == SEEK_END)
 
  945     if (offset < 0 || offset > 0x7fffffffLL)
 
  954     unsigned io_buffer_size = max_packet_size ? max_packet_size : 1024;
 
  956     if (
sizeof(
DynBuffer) + io_buffer_size < io_buffer_size)
 
  969     (*s)->max_packet_size = max_packet_size;
 
  980     if (max_packet_size <= 0)
 
 1004     return size - padding;