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 #include "ms.h"
|
|
22
|
|
23 #include "msringplayer.h"
|
|
24 #include "msosswrite.h"
|
|
25 #include "msossread.h"
|
|
26 #include "mscopy.h"
|
|
27 #include "mstimer.h"
|
|
28 #include <unistd.h>
|
|
29
|
|
30
|
|
31 #define READFILE "../share/ring.wav"
|
|
32 #define WRITEFILE "/tmp/mediaout"
|
|
33
|
|
34 int main()
|
|
35 {
|
|
36 MSFilter *play,*copy,*rec;
|
|
37 MSSync *timer;
|
|
38 int i=0;
|
|
39 SndCard *card;
|
|
40 ms_init();
|
|
41
|
|
42 card=snd_card_manager_get_card(snd_card_manager,1);
|
|
43 play=ms_ring_player_new(READFILE,2);
|
|
44 //play=ms_oss_read_new(0);
|
|
45 rec=snd_card_create_write_filter(card);
|
|
46 copy=ms_copy_new();
|
|
47 timer=ms_timer_new();
|
|
48
|
|
49 ms_filter_add_link(play,copy);
|
|
50 ms_filter_add_link(copy,rec);
|
|
51 ms_sync_attach(timer,play);
|
|
52
|
|
53 ms_start(timer);
|
|
54
|
|
55 while(1)
|
|
56 {
|
|
57 ms_sound_write_set_level(MS_SOUND_WRITE(rec),i);
|
|
58 i+=10;
|
|
59 sleep(2);
|
|
60 if (i>100) i=0;
|
|
61 }
|
|
62 return 0;
|
|
63 }
|