summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/jingle/libjingle/talk/third_party/mediastreamer/mscopy.c
blob: 3040b2e20bfd0de905356ce10526267f65708c19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
  The mediastreamer library aims at providing modular media processing and I/O
	for linphone, but also for any telephony application.
  Copyright (C) 2001  Simon MORLAT simon.morlat@linphone.org
  										
  This library is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public
  License as published by the Free Software Foundation; either
  version 2.1 of the License, or (at your option) any later version.

  This library is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  Lesser General Public License for more details.

  You should have received a copy of the GNU Lesser General Public
  License along with this library; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/


#include "mscopy.h"
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <errno.h>

static MSCopyClass *ms_copy_class=NULL;

MSFilter * ms_copy_new(void)
{
	MSCopy *r;
	
	r=g_new(MSCopy,1);
	ms_copy_init(r);
	if (ms_copy_class==NULL)
	{
		ms_copy_class=g_new(MSCopyClass,1);
		ms_copy_class_init(ms_copy_class);
	}
	MS_FILTER(r)->klass=MS_FILTER_CLASS(ms_copy_class);
	return(MS_FILTER(r));
}
	

/* FOR INTERNAL USE*/
void ms_copy_init(MSCopy *r)
{
	ms_filter_init(MS_FILTER(r));
	MS_FILTER(r)->infifos=r->f_inputs;
	MS_FILTER(r)->outfifos=r->f_outputs;
	MS_FILTER(r)->r_mingran=MSCOPY_DEF_GRAN;
	memset(r->f_inputs,0,sizeof(MSFifo*)*MSCOPY_MAX_INPUTS);
	memset(r->f_outputs,0,sizeof(MSFifo*)*MSCOPY_MAX_INPUTS);
}

void ms_copy_class_init(MSCopyClass *klass)
{
	ms_filter_class_init(MS_FILTER_CLASS(klass));
	ms_filter_class_set_name(MS_FILTER_CLASS(klass),"fifocopier");
	MS_FILTER_CLASS(klass)->max_finputs=MSCOPY_MAX_INPUTS;
	MS_FILTER_CLASS(klass)->max_foutputs=MSCOPY_MAX_INPUTS;
	MS_FILTER_CLASS(klass)->r_maxgran=MSCOPY_DEF_GRAN;
	MS_FILTER_CLASS(klass)->w_maxgran=MSCOPY_DEF_GRAN;
	MS_FILTER_CLASS(klass)->destroy=(MSFilterDestroyFunc)ms_copy_destroy;
	MS_FILTER_CLASS(klass)->process=(MSFilterProcessFunc)ms_copy_process;
}
	
void ms_copy_process(MSCopy *r)
{
	MSFifo *fi,*fo;
	int err1;
	gint gran=MS_FILTER(r)->klass->r_maxgran;
	void *s,*d;
	
	/* process output fifos, but there is only one for this class of filter*/
	
	fi=r->f_inputs[0];
	fo=r->f_outputs[0];
	if (fi!=NULL)
	{
		err1=ms_fifo_get_read_ptr(fi,gran,&s);
		if (err1>0) err1=ms_fifo_get_write_ptr(fo,gran,&d);
		if (err1>0)
		{
			memcpy(d,s,gran);
		}
	}
}

void ms_copy_destroy( MSCopy *obj)
{
	g_free(obj);
}