]> git.sesse.net Git - ffmpeg/blob - libavutil/fifo.c
f36dfeea6e5d719fdf9b0957f1c662bcbd3a068a
[ffmpeg] / 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 AVFifoBuffer *av_fifo_alloc(unsigned int size)
26 {
27     AVFifoBuffer *f= av_mallocz(sizeof(AVFifoBuffer));
28     if(!f)
29         return NULL;
30     f->wptr = f->rptr =
31     f->buffer = av_malloc(size);
32     f->end = f->buffer + size;
33     if (!f->buffer)
34         av_freep(&f);
35     return f;
36 }
37
38 void av_fifo_free(AVFifoBuffer *f)
39 {
40     if(f){
41         av_free(f->buffer);
42         av_free(f);
43     }
44 }
45
46 int av_fifo_size(AVFifoBuffer *f)
47 {
48     return (uint32_t)(f->wndx - f->rndx);
49 }
50
51 int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size) {
52     unsigned int old_size= f->end - f->buffer;
53
54     if(old_size < new_size){
55         int len= av_fifo_size(f);
56         AVFifoBuffer *f2= av_fifo_alloc(new_size);
57
58         if (!f2)
59             return -1;
60         av_fifo_generic_read(f, len, NULL, f2->buffer);
61         f2->wptr += len;
62         f2->wndx += len;
63         av_free(f->buffer);
64         *f= *f2;
65         av_free(f2);
66     }
67     return 0;
68 }
69
70 int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int (*func)(void*, void*, int))
71 {
72     int total = size;
73     do {
74         int len = FFMIN(f->end - f->wptr, size);
75         if(func) {
76             if(func(src, f->wptr, len) <= 0)
77                 break;
78         } else {
79             memcpy(f->wptr, src, len);
80             src = (uint8_t*)src + len;
81         }
82 // Write memory barrier needed for SMP here in theory
83         f->wptr += len;
84         if (f->wptr >= f->end)
85             f->wptr = f->buffer;
86         f->wndx += len;
87         size -= len;
88     } while (size > 0);
89     return total - size;
90 }
91
92
93 int av_fifo_generic_read(AVFifoBuffer *f, int buf_size, void (*func)(void*, void*, int), void* dest)
94 {
95 // Read memory barrier needed for SMP here in theory
96     do {
97         int len = FFMIN(f->end - f->rptr, buf_size);
98         if(func) func(dest, f->rptr, len);
99         else{
100             memcpy(dest, f->rptr, len);
101             dest = (uint8_t*)dest + len;
102         }
103 // memory barrier needed for SMP here in theory
104         av_fifo_drain(f, len);
105         buf_size -= len;
106     } while (buf_size > 0);
107     return 0;
108 }
109
110 /** Discard data from the FIFO. */
111 void av_fifo_drain(AVFifoBuffer *f, int size)
112 {
113     f->rptr += size;
114     if (f->rptr >= f->end)
115         f->rptr -= f->end - f->buffer;
116     f->rndx += size;
117 }