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

« back to all changes in this revision

Viewing changes to mediastreamer/msfdispatcher.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 dispatcher 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
 
 
22
 
#ifndef MSFDISPATCHER_H
23
 
#define MSFDISPATCHER_H
24
 
 
25
 
#include "msfilter.h"
26
 
 
27
 
 
28
 
/*this is the class that implements a fdispatcher filter*/
29
 
 
30
 
#define MS_FDISPATCHER_MAX_INPUTS  1
31
 
#define MS_FDISPATCHER_MAX_OUTPUTS 5 
32
 
#define MS_FDISPATCHER_DEF_GRAN 64 /* the default granularity*/
33
 
 
34
 
typedef struct _MSFdispatcher
35
 
{
36
 
    /* the MSFdispatcher derivates from MSFilter, so the MSFilter object MUST be the first of the MSFdispatcher object
37
 
       in order to the object mechanism to work*/
38
 
    MSFilter filter;
39
 
    MSFifo *f_inputs[MS_FDISPATCHER_MAX_INPUTS];
40
 
    MSFifo *f_outputs[MS_FDISPATCHER_MAX_OUTPUTS];
41
 
} MSFdispatcher;
42
 
 
43
 
typedef struct _MSFdispatcherClass
44
 
{
45
 
        /* the MSFdispatcher derivates from MSFilter, so the MSFilter class MUST be the first of the MSFdispatcher class
46
 
       in order to the class mechanism to work*/
47
 
        MSFilterClass parent_class;
48
 
} MSFdispatcherClass;
49
 
 
50
 
/* PUBLIC */
51
 
#define MS_FDISPATCHER(filter) ((MSFdispatcher*)(filter))
52
 
#define MS_FDISPATCHER_CLASS(klass) ((MSFdispatcherClass*)(klass))
53
 
MSFilter * ms_fdispatcher_new(void);
54
 
 
55
 
/* FOR INTERNAL USE*/
56
 
void ms_fdispatcher_init(MSFdispatcher *r);
57
 
void ms_fdispatcher_class_init(MSFdispatcherClass *klass);
58
 
void ms_fdispatcher_destroy( MSFdispatcher *obj);
59
 
void ms_fdispatcher_process(MSFdispatcher *r);
60
 
 
61
 
#endif