Introduction
This is the simplest prototype to demonstrate how to realize a basic Voice Communication via Internet/Network on PC platform. The technique in this demo can be applied to develop the PC internet voice communication software, such as Internet Phone.
To save development time, I borrowed the idea of Client/Server design in Microsoft MSDN sample "GlabolChat
".
This sample has been tested in an intranet consisted of NT4.0 Server/Workstation and a LAN consisted of Win2000 Professional. The CPUs in the testing PC are at least Intel P2 266 or faster, and SoundCard, Mic, Speaker are a must.
In the tests, it can work smoothly in bi-directions voice talk with the an acceptable sound quality.
The Basic System Design
This sample contains two modules, Talkserver
and Talkclient
.
The basic system diagram is like:
Server Module
Server module has two type sockets, server sockets and client sockets. One server socket supports a certain network protocol and listens to the incoming connection with such protocol. When a client connection request comes, the server socket creates a client socket to build the link with the client. The client socket works to receive the messages from its client, transit the message to peer client socket, then the peer client socket sends the messages to the target client. The client socket also gets the messages from the peer socket and send these messages to its client.
Client Module
The user can use the client modules to communicate in voice with each other. The socket in the client is implemented as sending/receiving messages to/from the server.
The method to capture and transit sound data in client module is building and running a wave input device, when this wave input device records enough to size of the data buffer in its wave header structure, it notifies client instance. When the client receives the wave input device message, client retrieves the sound data in the wave input device buffer, then encodes the sound data into the voice communication message and sends to the peer (or target) client.
To play a voice message is similar. The client has a wave out device. After the client receives voice message from other client, it decodes the sound data from the message, put the sound data to the wave output device and drives it to play the sound.
Change Sound Quality
By changing the wave device buffer and wave format type defined in vtDef.h, you can change the sound quality in some kind of levels.
History
- 14th June, 2000: Date posted
License
This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.
A list of licenses authors might use can be found here.