Mercurial > libavutil.hg
annotate fifo.c @ 154:b94a48efd763 libavutil
move some __attribute__ macros to internal.h
author | mru |
---|---|
date | Wed, 06 Dec 2006 21:27:08 +0000 |
parents | d76a36742464 |
children | a8a9454b0874 |
rev | line source |
---|---|
110 | 1 /* |
2 * A very simple circular buffer FIFO implementation | |
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard | |
4 * Copyright (c) 2006 Roman Shaposhnik | |
5 * | |
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
110
diff
changeset
|
6 * This file is part of FFmpeg. |
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
110
diff
changeset
|
7 * |
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
110
diff
changeset
|
8 * FFmpeg is free software; you can redistribute it and/or |
110 | 9 * modify it under the terms of the GNU Lesser General Public |
10 * License as published by the Free Software Foundation; either | |
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
110
diff
changeset
|
11 * version 2.1 of the License, or (at your option) any later version. |
110 | 12 * |
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
110
diff
changeset
|
13 * FFmpeg is distributed in the hope that it will be useful, |
110 | 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 | |
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
110
diff
changeset
|
19 * License along with FFmpeg; if not, write to the Free Software |
110 | 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, int size) | |
26 { | |
27 f->buffer = av_malloc(size); | |
28 if (!f->buffer) | |
29 return -1; | |
30 f->end = f->buffer + size; | |
31 f->wptr = f->rptr = f->buffer; | |
32 return 0; | |
33 } | |
34 | |
35 void av_fifo_free(AVFifoBuffer *f) | |
36 { | |
37 av_free(f->buffer); | |
38 } | |
39 | |
40 int av_fifo_size(AVFifoBuffer *f) | |
41 { | |
42 int size = f->wptr - f->rptr; | |
43 if (size < 0) | |
44 size += f->end - f->buffer; | |
45 return size; | |
46 } | |
47 | |
48 /** | |
49 * Get data from the fifo (returns -1 if not enough data). | |
50 */ | |
51 int av_fifo_read(AVFifoBuffer *f, uint8_t *buf, int buf_size) | |
52 { | |
53 int len; | |
54 int size = f->wptr - f->rptr; | |
55 if (size < 0) | |
56 size += f->end - f->buffer; | |
57 | |
58 if (size < buf_size) | |
59 return -1; | |
60 while (buf_size > 0) { | |
61 len = FFMIN(f->end - f->rptr, buf_size); | |
62 memcpy(buf, f->rptr, len); | |
63 buf += len; | |
64 f->rptr += len; | |
65 if (f->rptr >= f->end) | |
66 f->rptr = f->buffer; | |
67 buf_size -= len; | |
68 } | |
69 return 0; | |
70 } | |
71 | |
72 /** | |
73 * Resizes a FIFO. | |
74 */ | |
75 void av_fifo_realloc(AVFifoBuffer *f, unsigned int new_size) { | |
76 unsigned int old_size= f->end - f->buffer; | |
77 | |
78 if(old_size < new_size){ | |
79 uint8_t *old= f->buffer; | |
80 | |
81 f->buffer= av_realloc(f->buffer, new_size); | |
82 | |
83 f->rptr += f->buffer - old; | |
84 f->wptr += f->buffer - old; | |
85 | |
86 if(f->wptr < f->rptr){ | |
87 memmove(f->rptr + new_size - old_size, f->rptr, f->buffer + old_size - f->rptr); | |
88 f->rptr += new_size - old_size; | |
89 } | |
90 f->end= f->buffer + new_size; | |
91 } | |
92 } | |
93 | |
94 void av_fifo_write(AVFifoBuffer *f, const uint8_t *buf, int size) | |
95 { | |
96 int len; | |
97 | |
98 while (size > 0) { | |
99 len = FFMIN(f->end - f->wptr, size); | |
100 memcpy(f->wptr, buf, len); | |
101 f->wptr += len; | |
102 if (f->wptr >= f->end) | |
103 f->wptr = f->buffer; | |
104 buf += len; | |
105 size -= len; | |
106 } | |
107 } | |
108 | |
109 | |
110 /* get data from the fifo (return -1 if not enough data) */ | |
111 int av_fifo_generic_read(AVFifoBuffer *f, int buf_size, void (*func)(void*, void*, int), void* dest) | |
112 { | |
113 int len; | |
114 int size = f->wptr - f->rptr; | |
115 if (size < 0) | |
116 size += f->end - f->buffer; | |
117 | |
118 if (size < buf_size) | |
119 return -1; | |
120 while (buf_size > 0) { | |
121 len = FFMIN(f->end - f->rptr, buf_size); | |
122 func(dest, f->rptr, len); | |
123 f->rptr += len; | |
124 if (f->rptr >= f->end) | |
125 f->rptr = f->buffer; | |
126 buf_size -= len; | |
127 } | |
128 return 0; | |
129 } | |
130 | |
131 /* discard data from the fifo */ | |
132 void av_fifo_drain(AVFifoBuffer *f, int size) | |
133 { | |
134 f->rptr += size; | |
135 if (f->rptr >= f->end) | |
136 f->rptr -= f->end - f->buffer; | |
137 } |