12024
|
1 /*
|
|
2 The mediastreamer library aims at providing modular media processing and I/O
|
|
3 for linphone, but also for any telephony application.
|
|
4 Copyright (C) 2001 Simon MORLAT simon.morlat@linphone.org
|
|
5
|
|
6 This library is free software; you can redistribute it and/or
|
|
7 modify it under the terms of the GNU Lesser General Public
|
|
8 License as published by the Free Software Foundation; either
|
|
9 version 2.1 of the License, or (at your option) any later version.
|
|
10
|
|
11 This library is distributed in the hope that it will be useful,
|
|
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
14 Lesser General Public License for more details.
|
|
15
|
|
16 You should have received a copy of the GNU Lesser General Public
|
|
17 License along with this library; if not, write to the Free Software
|
|
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
19 */
|
|
20
|
|
21 #ifdef HAVE_GLIB
|
|
22 #include <glib.h>
|
|
23 #else
|
|
24 #include "glist.h"
|
|
25 #endif
|
|
26 #include "msbuffer.h"
|
|
27
|
|
28 typedef struct _MSFifo
|
|
29 {
|
|
30 gint r_gran; /*maximum granularity for reading*/
|
|
31 gint w_gran; /*maximum granularity for writing*/
|
|
32 gchar * rd_ptr; /* read pointer on the position where there is something to read on the MSBuffer */
|
|
33 guint32 readsize;
|
|
34 gchar * wr_ptr;
|
|
35 gchar * prev_wr_ptr;
|
|
36 guint32 writesize; /* write pointer on the position where it is possible to write on the MSBuffer */
|
|
37 gchar * begin; /* rd_ptr et wr_ptr must all be >=begin*/
|
|
38 guint32 size; /* the length of the fifo, but this may not be equal to buffer->size*/
|
|
39 guint32 saved_offset;
|
|
40 gchar * pre_end; /* the end of the buffer that is copied at the begginning when we wrap around*/
|
|
41 gchar * w_end; /* when a wr ptr is expected to exceed end_offset,
|
|
42 it must be wrapped around to go at the beginning of the buffer. This is the end of the buffer*/
|
|
43 gchar * r_end; /* this is the last position written at the end of the fifo. If a read ptr is expected to
|
|
44 exceed this pointer, it must be put at the begginning of the buffer */
|
|
45 void *prev_data; /*user data, usually the writing MSFilter*/
|
|
46 void *next_data; /* user data, usually the reading MSFilter */
|
|
47 MSBuffer *buffer;
|
|
48 } MSFifo;
|
|
49
|
|
50 /* constructor*/
|
|
51 /* r_gran: max granularity for reading (in number of bytes)*/
|
|
52 /* w_gran: max granularity for writing (in number of bytes)*/
|
|
53 /* r_offset: number of bytes that are kept available behind read pointer (for recursive filters)*/
|
|
54 /* w_offset: number of bytes that are kept available behind write pointer (for recursive filters)*/
|
|
55 /* buf is a MSBuffer that should be compatible with the above parameter*/
|
|
56 MSFifo * ms_fifo_new(MSBuffer *buf, gint r_gran, gint w_gran, gint r_offset, gint w_offset);
|
|
57
|
|
58 /*does the same that ms_fifo_new(), but also allocate a compatible buffer automatically*/
|
|
59 MSFifo * ms_fifo_new_with_buffer(gint r_gran, gint w_gran, gint r_offset, gint w_offset, gint min_buffer_size);
|
|
60
|
|
61 void ms_fifo_destroy( MSFifo *fifo);
|
|
62
|
|
63 void ms_fifo_destroy_with_buffer(MSFifo *fifo);
|
|
64
|
|
65 /* get data to read */
|
|
66 gint ms_fifo_get_read_ptr(MSFifo *fifo, gint bsize, void **ret_ptr);
|
|
67
|
|
68 /* get a buffer to write*/
|
|
69 gint ms_fifo_get_write_ptr(MSFifo *fifo, gint bsize, void **ret_ptr);
|
|
70
|
|
71 /* in case the buffer got by ms_fifo_get_write_ptr() could not be filled completely, you must
|
|
72 tell it by using this function */
|
|
73 void ms_fifo_update_write_ptr(MSFifo *fifo, gint written);
|