~ubuntu-branches/ubuntu/vivid/linphone/vivid

« back to all changes in this revision

Viewing changes to mediastreamer/msfifo.h

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Mimram
  • Date: 2006-11-15 10:34:50 UTC
  • mfrom: (1.2.1 upstream) (2.1.8 feisty)
  • Revision ID: james.westby@ubuntu.com-20061115103450-qgafwcks2lkhctlj
* New upstream release.
* Enable video support.
* Fix mismatched #endif in mscommon.h, closes: #398307.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
        guint32 writesize;      /* write pointer on the position where it is possible to write on the MSBuffer */
36
 
        gchar * begin;  /* rd_ptr et wr_ptr must all be >=begin*/
37
 
        guint32 size;        /* the length of the fifo, but this may not be equal to buffer->size*/
38
 
        guint32 saved_offset;
39
 
        gchar * pre_end;  /* the end of the buffer that is copied at the begginning when we wrap around*/
40
 
        gchar * w_end;    /* when a wr ptr is expected to exceed end_offset,
41
 
                                                                                        it must be wrapped around to go at the beginning of the buffer. This is the end of the buffer*/
42
 
        gchar * r_end;    /* this is the last position written at the end of the fifo. If a read ptr is expected to
43
 
                                                                                        exceed this pointer, it must be put at the begginning of the buffer */
44
 
        void *prev_data;   /*user data, usually the writing MSFilter*/
45
 
        void *next_data;   /* user data, usually the reading MSFilter */
46
 
        MSBuffer *buffer;
47
 
} MSFifo;
48
 
 
49
 
/* constructor*/
50
 
/* r_gran: max granularity for reading (in number of bytes)*/
51
 
/* w_gran: max granularity for writing (in number of bytes)*/
52
 
/* r_offset: number of bytes that are kept availlable behind read pointer (for recursive filters)*/
53
 
/* w_offset: number of bytes that are kept availlable behind write pointer (for recursive filters)*/
54
 
/* buf is a MSBuffer that should be compatible with the above parameter*/
55
 
MSFifo * ms_fifo_new(MSBuffer *buf, gint r_gran, gint w_gran, gint r_offset, gint w_offset);
56
 
 
57
 
/*does the same that ms_fifo_new(), but also allocate a compatible buffer automatically*/
58
 
MSFifo * ms_fifo_new_with_buffer(gint r_gran, gint w_gran, gint r_offset, gint w_offset, gint min_buffer_size);
59
 
 
60
 
void ms_fifo_destroy( MSFifo *fifo);
61
 
 
62
 
void ms_fifo_destroy_with_buffer(MSFifo *fifo);
63
 
 
64
 
/* get data to read */
65
 
gint ms_fifo_get_read_ptr(MSFifo *fifo, gint bsize, void **ret_ptr);
66
 
 
67
 
/* get a buffer to write*/
68
 
gint ms_fifo_get_write_ptr(MSFifo *fifo, gint bsize, void **ret_ptr);