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

25
int av_fifo_init(AVFifoBuffer *f, unsigned int size)
26
{
27
    size= FFMAX(size, size+1);
28
    f->wptr = f->rptr =
29
    f->buffer = av_malloc(size);
30
    f->end = f->buffer + size;
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
    if (!f->buffer)
        return -1;
    return 0;
}

void av_fifo_free(AVFifoBuffer *f)
{
    av_free(f->buffer);
}

int av_fifo_size(AVFifoBuffer *f)
{
    int size = f->wptr - f->rptr;
    if (size < 0)
        size += f->end - f->buffer;
    return size;
}

int av_fifo_read(AVFifoBuffer *f, uint8_t *buf, int buf_size)
{
51
    return av_fifo_generic_read(f, buf_size, NULL, buf);
52 53
}

54
#if LIBAVUTIL_VERSION_MAJOR < 50
55
void av_fifo_realloc(AVFifoBuffer *f, unsigned int new_size) {
56 57
    av_fifo_realloc2(f, new_size);
}
58
#endif
59 60

int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size) {
61 62
    unsigned int old_size= f->end - f->buffer;

63
    if(old_size <= new_size){
64 65
        int len= av_fifo_size(f);
        AVFifoBuffer f2;
66

67 68
        if (av_fifo_init(&f2, new_size) < 0)
            return -1;
69 70 71 72
        av_fifo_read(f, f2.buffer, len);
        f2.wptr += len;
        av_free(f->buffer);
        *f= f2;
73
    }
74
    return 0;
75 76 77 78
}

void av_fifo_write(AVFifoBuffer *f, const uint8_t *buf, int size)
{
79 80 81
    av_fifo_generic_write(f, (void *)buf, size, NULL);
}

82
int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int (*func)(void*, void*, int))
83 84
{
    int total = size;
85
    do {
Michael Niedermayer's avatar
Michael Niedermayer committed
86
        int len = FFMIN(f->end - f->wptr, size);
87
        if(func) {
88
            if(func(src, f->wptr, len) <= 0)
89 90
                break;
        } else {
91 92
            memcpy(f->wptr, src, len);
            src = (uint8_t*)src + len;
93
        }
94 95 96 97
        f->wptr += len;
        if (f->wptr >= f->end)
            f->wptr = f->buffer;
        size -= len;
98
    } while (size > 0);
99
    return total - size;
100 101 102 103 104
}


int av_fifo_generic_read(AVFifoBuffer *f, int buf_size, void (*func)(void*, void*, int), void* dest)
{
105
    do {
Michael Niedermayer's avatar
Michael Niedermayer committed
106
        int len = FFMIN(f->end - f->rptr, buf_size);
107 108 109 110 111
        if(func) func(dest, f->rptr, len);
        else{
            memcpy(dest, f->rptr, len);
            dest = (uint8_t*)dest + len;
        }
112
        av_fifo_drain(f, len);
113
        buf_size -= len;
114
    } while (buf_size > 0);
115 116 117
    return 0;
}

Michael Niedermayer's avatar
Michael Niedermayer committed
118
/** discard data from the fifo */
119 120 121 122 123 124
void av_fifo_drain(AVFifoBuffer *f, int size)
{
    f->rptr += size;
    if (f->rptr >= f->end)
        f->rptr -= f->end - f->buffer;
}