fifo.c 4.14 KB
Newer Older
1
/*
2
 * a very simple circular buffer FIFO implementation
3 4 5
 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
 * Copyright (c) 2006 Roman Shaposhnik
 *
6
 * This file is part of Libav.
7
 *
8
 * Libav 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
 * Libav 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 Libav; 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
AVFifoBuffer *av_fifo_alloc(unsigned int size)
26
{
27 28 29
    AVFifoBuffer *f= av_mallocz(sizeof(AVFifoBuffer));
    if(!f)
        return NULL;
30
    f->buffer = av_malloc(size);
31
    f->end = f->buffer + size;
32
    av_fifo_reset(f);
33
    if (!f->buffer)
34 35
        av_freep(&f);
    return f;
36 37 38 39
}

void av_fifo_free(AVFifoBuffer *f)
{
40
    if(f){
Michael Niedermayer's avatar
Michael Niedermayer committed
41 42
        av_free(f->buffer);
        av_free(f);
43
    }
44 45
}

46 47 48 49 50 51
void av_fifo_reset(AVFifoBuffer *f)
{
    f->wptr = f->rptr = f->buffer;
    f->wndx = f->rndx = 0;
}

52 53
int av_fifo_size(AVFifoBuffer *f)
{
54
    return (uint32_t)(f->wndx - f->rndx);
55 56
}

57 58 59 60 61
int av_fifo_space(AVFifoBuffer *f)
{
    return f->end - f->buffer - av_fifo_size(f);
}

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

65
    if(old_size < new_size){
66
        int len= av_fifo_size(f);
67
        AVFifoBuffer *f2= av_fifo_alloc(new_size);
68

69
        if (!f2)
70
            return -1;
71
        av_fifo_generic_read(f, f2->buffer, len, NULL);
72 73
        f2->wptr += len;
        f2->wndx += len;
74
        av_free(f->buffer);
75 76
        *f= *f2;
        av_free(f2);
77
    }
78
    return 0;
79 80
}

81
// src must NOT be const as it can be a context for func that may need updating (like a pointer or byte counter)
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
// Write memory barrier needed for SMP here in theory
95 96 97
        f->wptr += len;
        if (f->wptr >= f->end)
            f->wptr = f->buffer;
98
        f->wndx += len;
99
        size -= len;
100
    } while (size > 0);
101
    return total - size;
102 103 104
}


105
int av_fifo_generic_read(AVFifoBuffer *f, void *dest, int buf_size, void (*func)(void*, void*, int))
106
{
107
// Read memory barrier needed for SMP here in theory
108
    do {
Michael Niedermayer's avatar
Michael Niedermayer committed
109
        int len = FFMIN(f->end - f->rptr, buf_size);
110 111 112 113 114
        if(func) func(dest, f->rptr, len);
        else{
            memcpy(dest, f->rptr, len);
            dest = (uint8_t*)dest + len;
        }
115
// memory barrier needed for SMP here in theory
116
        av_fifo_drain(f, len);
117
        buf_size -= len;
118
    } while (buf_size > 0);
119 120 121
    return 0;
}

122
/** Discard data from the FIFO. */
123 124 125 126 127
void av_fifo_drain(AVFifoBuffer *f, int size)
{
    f->rptr += size;
    if (f->rptr >= f->end)
        f->rptr -= f->end - f->buffer;
128
    f->rndx += size;
129
}
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165

#ifdef TEST

#undef printf

int main(void)
{
    /* create a FIFO buffer */
    AVFifoBuffer *fifo = av_fifo_alloc(13 * sizeof(int));
    int i, j, n;

    /* fill data */
    for (i = 0; av_fifo_space(fifo) >= sizeof(int); i++)
        av_fifo_generic_write(fifo, &i, sizeof(int), NULL);

    /* peek at FIFO */
    n = av_fifo_size(fifo)/sizeof(int);
    for (i = -n+1; i < n; i++) {
        int *v = (int *)av_fifo_peek2(fifo, i*sizeof(int));
        printf("%d: %d\n", i, *v);
    }
    printf("\n");

    /* read data */
    for (i = 0; av_fifo_size(fifo) >= sizeof(int); i++) {
        av_fifo_generic_read(fifo, &j, sizeof(int), NULL);
        printf("%d ", j);
    }
    printf("\n");

    av_fifo_free(fifo);

    return 0;
}

#endif