]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavutil/fifo.c
Try to fix the 1 byte cant be used issue.
[frescor/ffmpeg.git] / libavutil / fifo.c
1 /*
2  * a very simple circular buffer FIFO implementation
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  * Copyright (c) 2006 Roman Shaposhnik
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * 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  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * 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  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 #include "common.h"
23 #include "fifo.h"
24
25 int av_fifo_init(AVFifoBuffer *f, unsigned int size)
26 {
27     f->wptr = f->rptr =
28     f->buffer = av_malloc(size);
29     f->end = f->buffer + size;
30     f->rndx = f->wndx = 0;
31     if (!f->buffer)
32         return -1;
33     return 0;
34 }
35
36 void av_fifo_free(AVFifoBuffer *f)
37 {
38     av_free(f->buffer);
39 }
40
41 int av_fifo_size(AVFifoBuffer *f)
42 {
43     return (uint32_t)(f->wndx - f->rndx);
44 }
45
46 int av_fifo_read(AVFifoBuffer *f, uint8_t *buf, int buf_size)
47 {
48     return av_fifo_generic_read(f, buf_size, NULL, buf);
49 }
50
51 #if LIBAVUTIL_VERSION_MAJOR < 50
52 void av_fifo_realloc(AVFifoBuffer *f, unsigned int new_size) {
53     av_fifo_realloc2(f, new_size);
54 }
55 #endif
56
57 int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size) {
58     unsigned int old_size= f->end - f->buffer;
59
60     if(old_size < new_size){
61         int len= av_fifo_size(f);
62         AVFifoBuffer f2;
63
64         if (av_fifo_init(&f2, new_size) < 0)
65             return -1;
66         av_fifo_read(f, f2.buffer, len);
67         f2.wptr += len;
68         f2.wndx += len;
69         av_free(f->buffer);
70         *f= f2;
71     }
72     return 0;
73 }
74
75 #if LIBAVUTIL_VERSION_MAJOR < 50
76 void av_fifo_write(AVFifoBuffer *f, const uint8_t *buf, int size)
77 {
78     av_fifo_generic_write(f, (void *)buf, size, NULL);
79 }
80 #endif
81
82 int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int (*func)(void*, void*, int))
83 {
84     int total = size;
85     do {
86         int len = FFMIN(f->end - f->wptr, size);
87         if(func) {
88             if(func(src, f->wptr, len) <= 0)
89                 break;
90         } else {
91             memcpy(f->wptr, src, len);
92             src = (uint8_t*)src + len;
93         }
94         f->wptr += len;
95         if (f->wptr >= f->end)
96             f->wptr = f->buffer;
97         f->wndx += len;
98         size -= len;
99     } while (size > 0);
100     return total - size;
101 }
102
103
104 int av_fifo_generic_read(AVFifoBuffer *f, int buf_size, void (*func)(void*, void*, int), void* dest)
105 {
106     do {
107         int len = FFMIN(f->end - f->rptr, buf_size);
108         if(func) func(dest, f->rptr, len);
109         else{
110             memcpy(dest, f->rptr, len);
111             dest = (uint8_t*)dest + len;
112         }
113         av_fifo_drain(f, len);
114         buf_size -= len;
115     } while (buf_size > 0);
116     return 0;
117 }
118
119 /** Discard data from the FIFO. */
120 void av_fifo_drain(AVFifoBuffer *f, int size)
121 {
122     f->rptr += size;
123     if (f->rptr >= f->end)
124         f->rptr -= f->end - f->buffer;
125     f->rndx += size;
126 }