In addition to what Edders said, there are numerous codecs out there like G.711, GSM, G.729, iLBC, Speex, etc. And you would need to know and understand all of them.
I want to do a simple ActiveX control, which will basically be a wrapper over a C++ VoIP library/application. The intent is to embed the softphone in a browser so that the application...
Steve Maguire in Writing Solid Code mentions how his re-write of an old library, which previously had no assertions, caused so many assertion errors in the code that now used the new library....
What access level (private, public, protected) should be given to the different message handlers in my application? I generally declare all the variables for the controls as private, but...
Ofcourse, I know that. And, I update my controls by sending a message to the window that created them. But, the question over here is, from an another thread how I get the items selected in the list...
Yes, the property page is created by the main thread. The reason I'm worried about thread safety issues is that I make updates to the list control from a...
I have a property page which has a list control on it. I need to know the number of items in the list control and read the text of the items from my main dialog box, so how can I do this...
Are there any other ways to make the application thread safe? Or the only way is to send user defined messages to the property page, and ask it to update the list control?
...
I have a dialog based application that has two property pages over it. The property page has a list control, basically the app is a softphone and the list control shows the active calls and it's...