fifo.h 3.76 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 21 22 23
/**
 * @file fifo.h
 * A very simple circular buffer FIFO implementation.
 */

24 25
#ifndef AVUTIL_FIFO_H
#define AVUTIL_FIFO_H
26

27
#include <stdint.h>
28
#include "common.h"
29

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

35
/**
36 37
 * Initializes an AVFifoBuffer.
 * @param *f AVFifoBuffer to initialize
38 39 40
 * @param size of FIFO
 * @return <0 for failure >=0 otherwise
 */
41
int av_fifo_init(AVFifoBuffer *f, unsigned int size);
42 43

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

/**
50 51 52
 * 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
53 54
 * @return size
 */
55
int av_fifo_size(AVFifoBuffer *f);
56 57

/**
58 59
 * Reads data from an AVFifoBuffer.
 * @param *f AVFifoBuffer to read from
60
 * @param *buf data destination
61
 * @param buf_size number of bytes to read
62
 */
63
int av_fifo_read(AVFifoBuffer *f, uint8_t *buf, int buf_size);
64 65

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

/**
75 76
 * Writes data into an AVFifoBuffer.
 * @param *f AVFifoBuffer to write to
77 78 79
 * @param *buf data source
 * @param size data size
 */
80 81 82 83 84
attribute_deprecated void av_fifo_write(AVFifoBuffer *f, const uint8_t *buf, int size);

/**
 * Feeds data from a user supplied callback to an AVFifoBuffer.
 * @param *f AVFifoBuffer to write to
85
 * @param *src data source
86
 * @param size number of bytes to write
87
 * @param *func generic write function. First parameter is src,
88 89 90
 * second is dest_buf, third is dest_buf_size.
 * func must return the number of bytes written to dest_buf, or <= 0 to
 * indicate no more data available to write.
91
 * If func is NULL, src is interpreted as a simple byte array for source data.
92 93
 * @return the number of bytes written to the fifo.
 */
94
int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int (*func)(void*, void*, int));
95

96
#if LIBAVUTIL_VERSION_MAJOR < 50
97
/**
98 99 100
 * Resizes an AVFifoBuffer.
 * @param *f AVFifoBuffer to resize
 * @param size new AVFifoBuffer size in bytes
101
 * @see av_fifo_realloc2()
102
 */
103 104
attribute_deprecated void av_fifo_realloc(AVFifoBuffer *f, unsigned int size);
#endif
105

106 107 108 109 110 111 112 113
/**
 * Resizes an AVFifoBuffer.
 * @param *f AVFifoBuffer to resize
 * @param size new AVFifoBuffer size in bytes
 * @return <0 for failure >=0 otherwise
 */
int av_fifo_realloc2(AVFifoBuffer *f, unsigned int size);

114
/**
115 116 117
 * 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
118
 */
119 120 121 122 123 124 125 126 127
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;
}
128
#endif /* AVUTIL_FIFO_H */