aviobuf.c 20.0 KB
Newer Older
F
Fabrice Bellard 已提交
1 2
/*
 * Buffered I/O for ffmpeg system
F
Fabrice Bellard 已提交
3
 * Copyright (c) 2000,2001 Fabrice Bellard
F
Fabrice Bellard 已提交
4
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
F
Fabrice Bellard 已提交
8 9
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
F
Fabrice Bellard 已提交
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
F
Fabrice Bellard 已提交
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
F
Fabrice Bellard 已提交
14 15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
F
Fabrice Bellard 已提交
16
 *
F
Fabrice Bellard 已提交
17
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with FFmpeg; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
F
Fabrice Bellard 已提交
20
 */
21 22

#include "libavutil/crc.h"
23
#include "libavutil/intreadwrite.h"
F
Fabrice Bellard 已提交
24
#include "avformat.h"
25
#include "avio.h"
26
#include <stdarg.h>
F
Fabrice Bellard 已提交
27 28 29

#define IO_BUFFER_SIZE 32768

30 31
static void fill_buffer(ByteIOContext *s);

F
Fabrice Bellard 已提交
32 33 34 35 36
int init_put_byte(ByteIOContext *s,
                  unsigned char *buffer,
                  int buffer_size,
                  int write_flag,
                  void *opaque,
37
                  int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
M
Michael Niedermayer 已提交
38
                  int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
39
                  int64_t (*seek)(void *opaque, int64_t offset, int whence))
F
Fabrice Bellard 已提交
40 41 42 43 44
{
    s->buffer = buffer;
    s->buffer_size = buffer_size;
    s->buf_ptr = buffer;
    s->opaque = opaque;
45
    url_resetbuf(s, write_flag ? URL_WRONLY : URL_RDONLY);
F
Fabrice Bellard 已提交
46 47 48 49 50 51
    s->write_packet = write_packet;
    s->read_packet = read_packet;
    s->seek = seek;
    s->pos = 0;
    s->must_flush = 0;
    s->eof_reached = 0;
M
Michael Niedermayer 已提交
52
    s->error = 0;
F
Fabrice Bellard 已提交
53
    s->is_streamed = 0;
54
    s->max_packet_size = 0;
55
    s->update_checksum= NULL;
56 57 58 59
    if(!read_packet && !write_flag){
        s->pos = buffer_size;
        s->buf_end = s->buffer + buffer_size;
    }
60 61
    s->read_pause = NULL;
    s->read_seek  = NULL;
F
Fabrice Bellard 已提交
62 63
    return 0;
}
64

65 66 67 68 69 70 71
ByteIOContext *av_alloc_put_byte(
                  unsigned char *buffer,
                  int buffer_size,
                  int write_flag,
                  void *opaque,
                  int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
                  int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
D
Diego Biurrun 已提交
72 73
                  int64_t (*seek)(void *opaque, int64_t offset, int whence))
{
74 75 76 77 78 79
    ByteIOContext *s = av_mallocz(sizeof(ByteIOContext));
    init_put_byte(s, buffer, buffer_size, write_flag, opaque,
                  read_packet, write_packet, seek);
    return s;
}

F
Fabrice Bellard 已提交
80 81 82
static void flush_buffer(ByteIOContext *s)
{
    if (s->buf_ptr > s->buffer) {
M
Michael Niedermayer 已提交
83 84 85 86 87 88
        if (s->write_packet && !s->error){
            int ret= s->write_packet(s->opaque, s->buffer, s->buf_ptr - s->buffer);
            if(ret < 0){
                s->error = ret;
            }
        }
89
        if(s->update_checksum){
90 91 92
            s->checksum= s->update_checksum(s->checksum, s->checksum_ptr, s->buf_ptr - s->checksum_ptr);
            s->checksum_ptr= s->buffer;
        }
F
Fabrice Bellard 已提交
93 94 95 96 97 98 99 100
        s->pos += s->buf_ptr - s->buffer;
    }
    s->buf_ptr = s->buffer;
}

void put_byte(ByteIOContext *s, int b)
{
    *(s->buf_ptr)++ = b;
101
    if (s->buf_ptr >= s->buf_end)
F
Fabrice Bellard 已提交
102 103 104
        flush_buffer(s);
}

105
void put_buffer(ByteIOContext *s, const unsigned char *buf, int size)
F
Fabrice Bellard 已提交
106 107 108 109 110 111 112 113 114 115
{
    int len;

    while (size > 0) {
        len = (s->buf_end - s->buf_ptr);
        if (len > size)
            len = size;
        memcpy(s->buf_ptr, buf, len);
        s->buf_ptr += len;

116
        if (s->buf_ptr >= s->buf_end)
F
Fabrice Bellard 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129
            flush_buffer(s);

        buf += len;
        size -= len;
    }
}

void put_flush_packet(ByteIOContext *s)
{
    flush_buffer(s);
    s->must_flush = 0;
}

130
int64_t url_fseek(ByteIOContext *s, int64_t offset, int whence)
F
Fabrice Bellard 已提交
131
{
132 133
    int64_t offset1;
    int64_t pos;
134 135 136 137 138

    if(!s)
        return AVERROR(EINVAL);

    pos = s->pos - (s->write_flag ? 0 : (s->buf_end - s->buffer));
F
Fabrice Bellard 已提交
139 140

    if (whence != SEEK_CUR && whence != SEEK_SET)
141
        return AVERROR(EINVAL);
142

M
Michael Niedermayer 已提交
143 144 145 146 147 148 149 150 151 152 153
    if (whence == SEEK_CUR) {
        offset1 = pos + (s->buf_ptr - s->buffer);
        if (offset == 0)
            return offset1;
        offset += offset1;
    }
    offset1 = offset - pos;
    if (!s->must_flush &&
        offset1 >= 0 && offset1 < (s->buf_end - s->buffer)) {
        /* can do the seek inside the buffer */
        s->buf_ptr = s->buffer + offset1;
154 155 156 157
    } else if(s->is_streamed && !s->write_flag &&
              offset1 >= 0 && offset1 < (s->buf_end - s->buffer) + (1<<16)){
        while(s->pos < offset && !s->eof_reached)
            fill_buffer(s);
158 159
        if (s->eof_reached)
            return AVERROR(EPIPE);
160
        s->buf_ptr = s->buf_end + offset - s->pos;
M
Michael Niedermayer 已提交
161
    } else {
162
        int64_t res = AVERROR(EPIPE);
163

164
#if CONFIG_MUXERS || CONFIG_NETWORK
M
Michael Niedermayer 已提交
165
        if (s->write_flag) {
F
Fabrice Bellard 已提交
166 167 168
            flush_buffer(s);
            s->must_flush = 1;
        }
169
#endif /* CONFIG_MUXERS || CONFIG_NETWORK */
170 171
        if (!s->seek || (res = s->seek(s->opaque, offset, SEEK_SET)) < 0)
            return res;
172 173 174
        if (!s->write_flag)
            s->buf_end = s->buffer;
        s->buf_ptr = s->buffer;
M
Michael Niedermayer 已提交
175
        s->pos = offset;
F
Fabrice Bellard 已提交
176
    }
M
Michael Niedermayer 已提交
177
    s->eof_reached = 0;
F
Fabrice Bellard 已提交
178 179 180
    return offset;
}

181
void url_fskip(ByteIOContext *s, int64_t offset)
F
Fabrice Bellard 已提交
182 183 184 185
{
    url_fseek(s, offset, SEEK_CUR);
}

186
int64_t url_ftell(ByteIOContext *s)
F
Fabrice Bellard 已提交
187 188 189 190
{
    return url_fseek(s, 0, SEEK_CUR);
}

191
int64_t url_fsize(ByteIOContext *s)
192
{
193
    int64_t size;
194

195 196 197
    if(!s)
        return AVERROR(EINVAL);

198
    if (!s->seek)
199
        return AVERROR(EPIPE);
200 201
    size = s->seek(s->opaque, 0, AVSEEK_SIZE);
    if(size<0){
202 203 204
        if ((size = s->seek(s->opaque, -1, SEEK_END)) < 0)
            return size;
        size++;
205
        s->seek(s->opaque, s->pos, SEEK_SET);
206
    }
207 208 209
    return size;
}

F
Fabrice Bellard 已提交
210 211
int url_feof(ByteIOContext *s)
{
212 213
    if(!s)
        return 0;
F
Fabrice Bellard 已提交
214 215 216
    return s->eof_reached;
}

M
Michael Niedermayer 已提交
217 218
int url_ferror(ByteIOContext *s)
{
219 220
    if(!s)
        return 0;
M
Michael Niedermayer 已提交
221 222 223
    return s->error;
}

F
Fabrice Bellard 已提交
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
void put_le32(ByteIOContext *s, unsigned int val)
{
    put_byte(s, val);
    put_byte(s, val >> 8);
    put_byte(s, val >> 16);
    put_byte(s, val >> 24);
}

void put_be32(ByteIOContext *s, unsigned int val)
{
    put_byte(s, val >> 24);
    put_byte(s, val >> 16);
    put_byte(s, val >> 8);
    put_byte(s, val);
}

240
void put_strz(ByteIOContext *s, const char *str)
241 242 243 244 245 246 247
{
    if (str)
        put_buffer(s, (const unsigned char *) str, strlen(str) + 1);
    else
        put_byte(s, 0);
}

248
void put_le64(ByteIOContext *s, uint64_t val)
F
Fabrice Bellard 已提交
249
{
250 251
    put_le32(s, (uint32_t)(val & 0xffffffff));
    put_le32(s, (uint32_t)(val >> 32));
F
Fabrice Bellard 已提交
252 253
}

254
void put_be64(ByteIOContext *s, uint64_t val)
F
Fabrice Bellard 已提交
255
{
256 257
    put_be32(s, (uint32_t)(val >> 32));
    put_be32(s, (uint32_t)(val & 0xffffffff));
F
Fabrice Bellard 已提交
258 259 260 261 262 263 264 265 266 267 268 269 270 271
}

void put_le16(ByteIOContext *s, unsigned int val)
{
    put_byte(s, val);
    put_byte(s, val >> 8);
}

void put_be16(ByteIOContext *s, unsigned int val)
{
    put_byte(s, val >> 8);
    put_byte(s, val);
}

A
Aurelien Jacobs 已提交
272 273 274 275 276 277
void put_le24(ByteIOContext *s, unsigned int val)
{
    put_le16(s, val & 0xffff);
    put_byte(s, val >> 16);
}

278 279 280 281 282 283
void put_be24(ByteIOContext *s, unsigned int val)
{
    put_be16(s, val >> 8);
    put_byte(s, val);
}

Z
Zdenek Kabelac 已提交
284
void put_tag(ByteIOContext *s, const char *tag)
F
Fabrice Bellard 已提交
285 286 287 288 289 290 291 292 293 294
{
    while (*tag) {
        put_byte(s, *tag++);
    }
}

/* Input stream */

static void fill_buffer(ByteIOContext *s)
{
295
    uint8_t *dst= !s->max_packet_size && s->buf_end - s->buffer < s->buffer_size ? s->buf_ptr : s->buffer;
296 297 298
    int len= s->buffer_size - (dst - s->buffer);

    assert(s->buf_ptr == s->buf_end);
F
Fabrice Bellard 已提交
299

300 301 302
    /* no need to do anything if EOF already reached */
    if (s->eof_reached)
        return;
303

304
    if(s->update_checksum && dst == s->buffer){
M
Michael Niedermayer 已提交
305 306
        if(s->buf_end > s->checksum_ptr)
            s->checksum= s->update_checksum(s->checksum, s->checksum_ptr, s->buf_end - s->checksum_ptr);
307 308 309
        s->checksum_ptr= s->buffer;
    }

310
    if(s->read_packet)
311 312 313
        len = s->read_packet(s->opaque, dst, len);
    else
        len = 0;
314 315 316
    if (len <= 0) {
        /* do not modify buffer if EOF reached so that a seek back can
           be done without rereading data */
F
Fabrice Bellard 已提交
317
        s->eof_reached = 1;
A
Alex Beregszaszi 已提交
318 319
        if(len<0)
            s->error= len;
320 321
    } else {
        s->pos += len;
322 323
        s->buf_ptr = dst;
        s->buf_end = dst + len;
F
Fabrice Bellard 已提交
324 325 326
    }
}

D
Diego Biurrun 已提交
327 328 329
unsigned long ff_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf,
                                    unsigned int len)
{
A
Aurelien Jacobs 已提交
330
    return av_crc(av_crc_get_table(AV_CRC_32_IEEE), checksum, buf, len);
331 332
}

D
Diego Biurrun 已提交
333 334
unsigned long get_checksum(ByteIOContext *s)
{
335
    s->checksum= s->update_checksum(s->checksum, s->checksum_ptr, s->buf_ptr - s->checksum_ptr);
336
    s->update_checksum= NULL;
337 338 339
    return s->checksum;
}

D
Diego Biurrun 已提交
340 341 342 343
void init_checksum(ByteIOContext *s,
                   unsigned long (*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len),
                   unsigned long checksum)
{
344
    s->update_checksum= update_checksum;
345
    if(s->update_checksum){
346
        s->checksum= checksum;
347 348
        s->checksum_ptr= s->buf_ptr;
    }
349 350
}

351
/* XXX: put an inline version */
F
Fabrice Bellard 已提交
352 353 354 355 356 357 358 359 360 361 362 363 364
int get_byte(ByteIOContext *s)
{
    if (s->buf_ptr < s->buf_end) {
        return *s->buf_ptr++;
    } else {
        fill_buffer(s);
        if (s->buf_ptr < s->buf_end)
            return *s->buf_ptr++;
        else
            return 0;
    }
}

365 366 367 368 369 370 371 372 373 374 375 376 377
int url_fgetc(ByteIOContext *s)
{
    if (s->buf_ptr < s->buf_end) {
        return *s->buf_ptr++;
    } else {
        fill_buffer(s);
        if (s->buf_ptr < s->buf_end)
            return *s->buf_ptr++;
        else
            return URL_EOF;
    }
}

F
Fabrice Bellard 已提交
378 379 380 381 382 383 384 385 386 387
int get_buffer(ByteIOContext *s, unsigned char *buf, int size)
{
    int len, size1;

    size1 = size;
    while (size > 0) {
        len = s->buf_end - s->buf_ptr;
        if (len > size)
            len = size;
        if (len == 0) {
388
            if(size > s->buffer_size && !s->update_checksum){
389
                if(s->read_packet)
B
Benoit Fouet 已提交
390
                    len = s->read_packet(s->opaque, buf, size);
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
                if (len <= 0) {
                    /* do not modify buffer if EOF reached so that a seek back can
                    be done without rereading data */
                    s->eof_reached = 1;
                    if(len<0)
                        s->error= len;
                    break;
                } else {
                    s->pos += len;
                    size -= len;
                    buf += len;
                    s->buf_ptr = s->buffer;
                    s->buf_end = s->buffer/* + len*/;
                }
            }else{
                fill_buffer(s);
                len = s->buf_end - s->buf_ptr;
                if (len == 0)
                    break;
            }
F
Fabrice Bellard 已提交
411 412 413 414 415 416 417 418 419 420
        } else {
            memcpy(buf, s->buf_ptr, len);
            buf += len;
            s->buf_ptr += len;
            size -= len;
        }
    }
    return size1 - size;
}

421 422 423
int get_partial_buffer(ByteIOContext *s, unsigned char *buf, int size)
{
    int len;
424

425 426
    if(size<0)
        return -1;
427 428 429 430 431 432 433 434 435 436 437 438 439

    len = s->buf_end - s->buf_ptr;
    if (len == 0) {
        fill_buffer(s);
        len = s->buf_end - s->buf_ptr;
    }
    if (len > size)
        len = size;
    memcpy(buf, s->buf_ptr, len);
    s->buf_ptr += len;
    return len;
}

F
Fabrice Bellard 已提交
440 441 442 443 444 445 446 447
unsigned int get_le16(ByteIOContext *s)
{
    unsigned int val;
    val = get_byte(s);
    val |= get_byte(s) << 8;
    return val;
}

A
Aurelien Jacobs 已提交
448 449 450 451 452 453 454 455
unsigned int get_le24(ByteIOContext *s)
{
    unsigned int val;
    val = get_le16(s);
    val |= get_byte(s) << 16;
    return val;
}

F
Fabrice Bellard 已提交
456 457 458
unsigned int get_le32(ByteIOContext *s)
{
    unsigned int val;
459 460
    val = get_le16(s);
    val |= get_le16(s) << 16;
F
Fabrice Bellard 已提交
461 462 463
    return val;
}

464
uint64_t get_le64(ByteIOContext *s)
F
Fabrice Bellard 已提交
465
{
466 467 468
    uint64_t val;
    val = (uint64_t)get_le32(s);
    val |= (uint64_t)get_le32(s) << 32;
F
Fabrice Bellard 已提交
469 470 471 472 473 474 475 476 477 478 479
    return val;
}

unsigned int get_be16(ByteIOContext *s)
{
    unsigned int val;
    val = get_byte(s) << 8;
    val |= get_byte(s);
    return val;
}

480
unsigned int get_be24(ByteIOContext *s)
F
Fabrice Bellard 已提交
481 482
{
    unsigned int val;
483
    val = get_be16(s) << 8;
F
Fabrice Bellard 已提交
484 485 486
    val |= get_byte(s);
    return val;
}
487 488 489 490 491 492 493
unsigned int get_be32(ByteIOContext *s)
{
    unsigned int val;
    val = get_be16(s) << 16;
    val |= get_be16(s);
    return val;
}
F
Fabrice Bellard 已提交
494

495
char *get_strz(ByteIOContext *s, char *buf, int maxlen)
496 497 498 499 500 501 502 503
{
    int i = 0;
    char c;

    while ((c = get_byte(s))) {
        if (i < maxlen-1)
            buf[i++] = c;
    }
504

505 506 507 508 509
    buf[i] = 0; /* Ensure null terminated, but may be truncated */

    return buf;
}

510
uint64_t get_be64(ByteIOContext *s)
F
Fabrice Bellard 已提交
511
{
512 513 514
    uint64_t val;
    val = (uint64_t)get_be32(s) << 32;
    val |= (uint64_t)get_be32(s);
F
Fabrice Bellard 已提交
515 516 517
    return val;
}

K
Kostya Shishkov 已提交
518
uint64_t ff_get_v(ByteIOContext *bc){
519 520 521 522 523 524 525 526 527 528
    uint64_t val = 0;
    int tmp;

    do{
        tmp = get_byte(bc);
        val= (val<<7) + (tmp&127);
    }while(tmp&128);
    return val;
}

529
int url_fdopen(ByteIOContext **s, URLContext *h)
F
Fabrice Bellard 已提交
530
{
531
    uint8_t *buffer;
532
    int buffer_size, max_packet_size;
F
Fabrice Bellard 已提交
533

534

535 536 537 538 539 540
    max_packet_size = url_get_max_packet_size(h);
    if (max_packet_size) {
        buffer_size = max_packet_size; /* no need to bufferize more than one packet */
    } else {
        buffer_size = IO_BUFFER_SIZE;
    }
541
    buffer = av_malloc(buffer_size);
F
Fabrice Bellard 已提交
542
    if (!buffer)
543
        return AVERROR(ENOMEM);
F
Fabrice Bellard 已提交
544

545 546 547 548 549 550 551
    *s = av_mallocz(sizeof(ByteIOContext));
    if(!*s) {
        av_free(buffer);
        return AVERROR(ENOMEM);
    }

    if (init_put_byte(*s, buffer, buffer_size,
552
                      (h->flags & URL_WRONLY || h->flags & URL_RDWR), h,
553
                      url_read, url_write, url_seek) < 0) {
554
        av_free(buffer);
555
        av_freep(s);
556
        return AVERROR(EIO);
F
Fabrice Bellard 已提交
557
    }
558 559
    (*s)->is_streamed = h->is_streamed;
    (*s)->max_packet_size = max_packet_size;
560
    if(h->prot) {
561
        (*s)->read_pause = (int (*)(void *, int))h->prot->url_read_pause;
562
        (*s)->read_seek  = (int64_t (*)(void *, int, int64_t, int))h->prot->url_read_seek;
563
    }
F
Fabrice Bellard 已提交
564 565 566 567 568
    return 0;
}

int url_setbufsize(ByteIOContext *s, int buf_size)
{
569
    uint8_t *buffer;
570
    buffer = av_malloc(buf_size);
F
Fabrice Bellard 已提交
571
    if (!buffer)
572
        return AVERROR(ENOMEM);
F
Fabrice Bellard 已提交
573

574
    av_free(s->buffer);
F
Fabrice Bellard 已提交
575 576 577
    s->buffer = buffer;
    s->buffer_size = buf_size;
    s->buf_ptr = buffer;
578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
    url_resetbuf(s, s->write_flag ? URL_WRONLY : URL_RDONLY);
    return 0;
}

int url_resetbuf(ByteIOContext *s, int flags)
{
    URLContext *h = s->opaque;
    if ((flags & URL_RDWR) || (h && h->flags != flags && !h->flags & URL_RDWR))
        return AVERROR(EINVAL);

    if (flags & URL_WRONLY) {
        s->buf_end = s->buffer + s->buffer_size;
        s->write_flag = 1;
    } else {
        s->buf_end = s->buffer;
        s->write_flag = 0;
    }
F
Fabrice Bellard 已提交
595 596 597
    return 0;
}

598
int url_fopen(ByteIOContext **s, const char *filename, int flags)
F
Fabrice Bellard 已提交
599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
{
    URLContext *h;
    int err;

    err = url_open(&h, filename, flags);
    if (err < 0)
        return err;
    err = url_fdopen(s, h);
    if (err < 0) {
        url_close(h);
        return err;
    }
    return 0;
}

int url_fclose(ByteIOContext *s)
{
    URLContext *h = s->opaque;
617

618
    av_free(s->buffer);
619
    av_free(s);
F
Fabrice Bellard 已提交
620 621 622 623 624 625 626 627
    return url_close(h);
}

URLContext *url_fileno(ByteIOContext *s)
{
    return s->opaque;
}

628
#if CONFIG_MUXERS
629 630 631 632 633 634 635 636 637 638 639 640
int url_fprintf(ByteIOContext *s, const char *fmt, ...)
{
    va_list ap;
    char buf[4096];
    int ret;

    va_start(ap, fmt);
    ret = vsnprintf(buf, sizeof(buf), fmt, ap);
    va_end(ap);
    put_buffer(s, buf, strlen(buf));
    return ret;
}
641
#endif //CONFIG_MUXERS
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668

char *url_fgets(ByteIOContext *s, char *buf, int buf_size)
{
    int c;
    char *q;

    c = url_fgetc(s);
    if (c == EOF)
        return NULL;
    q = buf;
    for(;;) {
        if (c == EOF || c == '\n')
            break;
        if ((q - buf) < buf_size - 1)
            *q++ = c;
        c = url_fgetc(s);
    }
    if (buf_size > 0)
        *q = '\0';
    return buf;
}

int url_fget_max_packet_size(ByteIOContext *s)
{
    return s->max_packet_size;
}

669
int av_url_read_fpause(ByteIOContext *s, int pause)
670 671 672
{
    if (!s->read_pause)
        return AVERROR(ENOSYS);
673
    return s->read_pause(s->opaque, pause);
674 675
}

D
Diego Biurrun 已提交
676 677
int64_t av_url_read_fseek(ByteIOContext *s, int stream_index,
                          int64_t timestamp, int flags)
678 679
{
    URLContext *h = s->opaque;
680
    int64_t ret;
681 682 683 684 685 686 687 688 689 690
    if (!s->read_seek)
        return AVERROR(ENOSYS);
    ret = s->read_seek(h, stream_index, timestamp, flags);
    if(ret >= 0) {
        s->buf_ptr = s->buf_end; // Flush buffer
        s->pos = s->seek(h, 0, SEEK_CUR);
    }
    return ret;
}

691
/* url_open_dyn_buf and url_close_dyn_buf are used in rtp.c to send a response
692 693
 * back to the server even if CONFIG_MUXERS is false. */
#if CONFIG_MUXERS || CONFIG_NETWORK
F
Fabrice Bellard 已提交
694
/* buffer handling */
695
int url_open_buf(ByteIOContext **s, uint8_t *buf, int buf_size, int flags)
F
Fabrice Bellard 已提交
696
{
697 698 699 700 701 702 703 704 705 706
    int ret;
    *s = av_mallocz(sizeof(ByteIOContext));
    if(!*s)
        return AVERROR(ENOMEM);
    ret = init_put_byte(*s, buf, buf_size,
                        (flags & URL_WRONLY || flags & URL_RDWR),
                        NULL, NULL, NULL, NULL);
    if(ret != 0)
        av_freep(s);
    return ret;
F
Fabrice Bellard 已提交
707 708 709 710
}

int url_close_buf(ByteIOContext *s)
{
711
    put_flush_packet(s);
F
Fabrice Bellard 已提交
712 713
    return s->buf_ptr - s->buffer;
}
714 715 716 717 718

/* output in a dynamic buffer */

typedef struct DynBuffer {
    int pos, size, allocated_size;
719
    uint8_t *buffer;
720
    int io_buffer_size;
721
    uint8_t io_buffer[1];
722 723
} DynBuffer;

M
Michael Niedermayer 已提交
724
static int dyn_buf_write(void *opaque, uint8_t *buf, int buf_size)
725 726
{
    DynBuffer *d = opaque;
727
    unsigned new_size, new_allocated_size;
728

729 730 731
    /* reallocate buffer if needed */
    new_size = d->pos + buf_size;
    new_allocated_size = d->allocated_size;
732 733
    if(new_size < d->pos || new_size > INT_MAX/2)
        return -1;
734 735 736 737
    while (new_size > new_allocated_size) {
        if (!new_allocated_size)
            new_allocated_size = new_size;
        else
738
            new_allocated_size += new_allocated_size / 2 + 1;
739
    }
740

741
    if (new_allocated_size > d->allocated_size) {
742 743
        d->buffer = av_realloc(d->buffer, new_allocated_size);
        if(d->buffer == NULL)
744
             return AVERROR(ENOMEM);
745 746 747 748 749 750
        d->allocated_size = new_allocated_size;
    }
    memcpy(d->buffer + d->pos, buf, buf_size);
    d->pos = new_size;
    if (d->pos > d->size)
        d->size = d->pos;
M
Michael Niedermayer 已提交
751
    return buf_size;
752 753
}

M
Michael Niedermayer 已提交
754
static int dyn_packet_buf_write(void *opaque, uint8_t *buf, int buf_size)
755 756
{
    unsigned char buf1[4];
M
Michael Niedermayer 已提交
757
    int ret;
758 759

    /* packetized write: output the header */
760
    AV_WB32(buf1, buf_size);
M
Michael Niedermayer 已提交
761 762 763
    ret= dyn_buf_write(opaque, buf1, 4);
    if(ret < 0)
        return ret;
764 765

    /* then the data */
M
Michael Niedermayer 已提交
766
    return dyn_buf_write(opaque, buf, buf_size);
767 768
}

769
static int64_t dyn_buf_seek(void *opaque, int64_t offset, int whence)
770 771 772 773 774 775 776 777 778 779 780 781 782
{
    DynBuffer *d = opaque;

    if (whence == SEEK_CUR)
        offset += d->pos;
    else if (whence == SEEK_END)
        offset += d->size;
    if (offset < 0 || offset > 0x7fffffffLL)
        return -1;
    d->pos = offset;
    return 0;
}

783
static int url_open_dyn_buf_internal(ByteIOContext **s, int max_packet_size)
784 785 786
{
    DynBuffer *d;
    int io_buffer_size, ret;
787 788

    if (max_packet_size)
789 790 791
        io_buffer_size = max_packet_size;
    else
        io_buffer_size = 1024;
792

793 794
    if(sizeof(DynBuffer) + io_buffer_size < io_buffer_size)
        return -1;
795
    d = av_mallocz(sizeof(DynBuffer) + io_buffer_size);
796
    if (!d)
797
        return AVERROR(ENOMEM);
798 799 800 801 802
    *s = av_mallocz(sizeof(ByteIOContext));
    if(!*s) {
        av_free(d);
        return AVERROR(ENOMEM);
    }
803
    d->io_buffer_size = io_buffer_size;
804
    ret = init_put_byte(*s, d->io_buffer, io_buffer_size,
805 806
                        1, d, NULL,
                        max_packet_size ? dyn_packet_buf_write : dyn_buf_write,
807 808
                        max_packet_size ? NULL : dyn_buf_seek);
    if (ret == 0) {
809 810 811 812
        (*s)->max_packet_size = max_packet_size;
    } else {
        av_free(d);
        av_freep(s);
813 814 815 816
    }
    return ret;
}

817
int url_open_dyn_buf(ByteIOContext **s)
818 819 820 821
{
    return url_open_dyn_buf_internal(s, 0);
}

822
int url_open_dyn_packet_buf(ByteIOContext **s, int max_packet_size)
823 824 825 826 827 828
{
    if (max_packet_size <= 0)
        return -1;
    return url_open_dyn_buf_internal(s, max_packet_size);
}

829
int url_close_dyn_buf(ByteIOContext *s, uint8_t **pbuffer)
830 831 832 833 834 835 836 837 838
{
    DynBuffer *d = s->opaque;
    int size;

    put_flush_packet(s);

    *pbuffer = d->buffer;
    size = d->size;
    av_free(d);
839
    av_free(s);
840 841
    return size;
}
842
#endif /* CONFIG_MUXERS || CONFIG_NETWORK */