fifo.h 3.54 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * 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
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

19
/**
20
 * @file libavutil/fifo.h
21
 * a very simple circular buffer FIFO implementation
22 23
 */

24 25
#ifndef AVUTIL_FIFO_H
#define AVUTIL_FIFO_H
26

27 28
#include <stdint.h>

29 30 31
typedef struct AVFifoBuffer {
    uint8_t *buffer;
    uint8_t *rptr, *wptr, *end;
32
    uint32_t rndx, wndx;
33 34
} AVFifoBuffer;

35
/**
36
 * Initializes an AVFifoBuffer.
37
 * @param size of FIFO
38
 * @return AVFifoBuffer or NULL if mem allocation failure
39
 */
40
AVFifoBuffer *av_fifo_alloc(unsigned int size);
41 42

/**
43 44
 * Frees an AVFifoBuffer.
 * @param *f AVFifoBuffer to free
45
 */
46
void av_fifo_free(AVFifoBuffer *f);
47

48 49 50 51 52 53
/**
 * Resets the AVFifoBuffer to the state right after av_fifo_alloc, in particular it is emptied.
 * @param *f AVFifoBuffer to reset
 */
void av_fifo_reset(AVFifoBuffer *f);

54
/**
55 56 57
 * Returns the amount of data in bytes in the AVFifoBuffer, that is the
 * amount of data you can read from it.
 * @param *f AVFifoBuffer to read from
58 59
 * @return size
 */
60
int av_fifo_size(AVFifoBuffer *f);
61

62 63 64 65 66 67 68 69
/**
 * Returns the amount of space in bytes in the AVFifoBuffer, that is the
 * amount of data you can write into it.
 * @param *f AVFifoBuffer to write into
 * @return size
 */
int av_fifo_space(AVFifoBuffer *f);

70
/**
71
 * Feeds data from an AVFifoBuffer to a user-supplied callback.
72 73
 * @param *f AVFifoBuffer to read from
 * @param buf_size number of bytes to read
74 75 76
 * @param *func generic read function
 * @param *dest data destination
 */
77
int av_fifo_generic_read(AVFifoBuffer *f, void *dest, int buf_size, void (*func)(void*, void*, int));
78

79
/**
80
 * Feeds data from a user-supplied callback to an AVFifoBuffer.
81
 * @param *f AVFifoBuffer to write to
82 83
 * @param *src data source; non-const since it may be used as a
 * modifiable context by the function defined in func
84
 * @param size number of bytes to write
85 86
 * @param *func generic write function; the first parameter is src,
 * the second is dest_buf, the third is dest_buf_size.
87 88
 * func must return the number of bytes written to dest_buf, or <= 0 to
 * indicate no more data available to write.
89
 * If func is NULL, src is interpreted as a simple byte array for source data.
90
 * @return the number of bytes written to the FIFO
91
 */
92
int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int (*func)(void*, void*, int));
93

94 95 96 97
/**
 * Resizes an AVFifoBuffer.
 * @param *f AVFifoBuffer to resize
 * @param size new AVFifoBuffer size in bytes
98
 * @return <0 for failure, >=0 otherwise
99 100 101
 */
int av_fifo_realloc2(AVFifoBuffer *f, unsigned int size);

102
/**
103 104 105
 * Reads and discards the specified amount of data from an AVFifoBuffer.
 * @param *f AVFifoBuffer to read from
 * @param size amount of data to read in bytes
106
 */
107 108 109 110 111 112 113 114 115
void av_fifo_drain(AVFifoBuffer *f, int size);

static inline uint8_t av_fifo_peek(AVFifoBuffer *f, int offs)
{
    uint8_t *ptr = f->rptr + offs;
    if (ptr >= f->end)
        ptr -= f->end - f->buffer;
    return *ptr;
}
116
#endif /* AVUTIL_FIFO_H */