Click here to Skip to main content
15,895,283 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to write IMPLEMENT_SERIAL for this class Pin
ComplexLifeForm1-Jul-05 20:11
ComplexLifeForm1-Jul-05 20:11 
AnswerRe: How to write IMPLEMENT_SERIAL for this class Pin
ThatsAlok1-Jul-05 21:04
ThatsAlok1-Jul-05 21:04 
AnswerRe: How to write IMPLEMENT_SERIAL for this class Pin
2249171-Jul-05 22:20
2249171-Jul-05 22:20 
GeneralAudio streaming Pin
meinhard_risch1-Jul-05 19:09
meinhard_risch1-Jul-05 19:09 
GeneralRe: Audio streaming Pin
Trollslayer1-Jul-05 21:02
mentorTrollslayer1-Jul-05 21:02 
GeneralRe: Audio streaming Pin
M.Mehrdad.M1-Jul-05 22:52
M.Mehrdad.M1-Jul-05 22:52 
GeneralRe: Audio streaming Pin
Alexander M.,3-Jul-05 0:23
Alexander M.,3-Jul-05 0:23 
GeneralRe: Audio streaming Pin
Alexander M.,3-Jul-05 0:22
Alexander M.,3-Jul-05 0:22 
FTP is a file transfer protocol, you can not use it for streaming!
Either use TCP (which is easier to handle) or UDP!

The way the whole thing works is quite easy.
You can either send uncompressed data (WLan should be fast enough) or better use compressed data if you have many streaming clients or the connection is too slow.

For that case I personally wouldn't use RTP because it is difficult to implement if you don't want to use the live library or any other RTP library.

Since WLan normally is a reliable network I propose you use TCP.
Before streaming transmit the settings of the data to the client (sampling rate, bits per sample, ...).
The streaming is easy then:
-create a directsound buffer (should be big to prevent lags!)
-decompress (if compressed)
-load the data in a (big) directsound buffer.
-after the buffer gets full the first time, you should run it.


Don't try it, just do it! Wink | ;-)
QuestionHow to hide a modal dialog ? Pin
gohappy_19991-Jul-05 19:02
gohappy_19991-Jul-05 19:02 
AnswerRe: How to hide a modal dialog ? Pin
ThatsAlok1-Jul-05 19:08
ThatsAlok1-Jul-05 19:08 
Generalthanks Pin
gohappy_19997-Jul-05 17:25
gohappy_19997-Jul-05 17:25 
GeneralRe: thanks Pin
ThatsAlok7-Jul-05 20:39
ThatsAlok7-Jul-05 20:39 
AnswerRe: How to hide a modal dialog ? Pin
John R. Shaw2-Jul-05 18:43
John R. Shaw2-Jul-05 18:43 
GeneralRe: How to hide a modal dialog ? Pin
ThatsAlok3-Jul-05 18:43
ThatsAlok3-Jul-05 18:43 
GeneralaxWebBrowser in MC++ Pin
osama_mirza1-Jul-05 18:51
sussosama_mirza1-Jul-05 18:51 
GeneralCreate setup package Pin
op_oap1-Jul-05 15:38
op_oap1-Jul-05 15:38 
Generalstrange in NTFS sector Pin
bghuang1-Jul-05 15:25
bghuang1-Jul-05 15:25 
GeneralNeed a few more testers to try C++ XML Library. Pin
Stuart Konen1-Jul-05 13:07
Stuart Konen1-Jul-05 13:07 
GeneralRe: Need a few more testers to try C++ XML Library. Pin
Tom Archer1-Jul-05 13:57
Tom Archer1-Jul-05 13:57 
GeneralRe: Need a few more testers to try C++ XML Library. Pin
Jack Puppy1-Jul-05 15:36
Jack Puppy1-Jul-05 15:36 
GeneralRe: Need a few more testers to try C++ XML Library. Pin
ThatsAlok1-Jul-05 19:10
ThatsAlok1-Jul-05 19:10 
GeneralRe: Need a few more testers to try C++ XML Library. Pin
Jack Puppy2-Jul-05 12:29
Jack Puppy2-Jul-05 12:29 
GeneralRe: Need a few more testers to try C++ XML Library. Pin
g3e3-Jul-05 19:35
g3e3-Jul-05 19:35 
GeneralRe: Need a few more testers to try C++ XML Library. Pin
Stuart Konen14-Jul-05 16:07
Stuart Konen14-Jul-05 16:07 
Generalbusy dlg Pin
pnpfriend1-Jul-05 11:29
pnpfriend1-Jul-05 11:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.