Hi, i made a media player in DirectShow that captures PCM audio frames from mp3 audio files. I need to send this audio frames to PJSIP. Can anyone help me? I have tried adding a passive_port to the conference bridge and it did not worked. Now i am trying to use splitcomb. And i can send some noise. Here's a code sample: // 1? pjmedia_splitcom_create pj_status_t status = pjmedia_splitcomb_create(pool_vars, nSamplesPerSec, nChannels, samplesPerFrame, wBitsPerSample, 0, &p_splitcomb); // for each channel for(unsigned int i = 0; i < nChannels; i++) { unsigned int p_slot; pjmedia_port* p_port; // 2? pjmedia_splitcom_create_rev_channel status = pjmedia_splitcomb_create_rev_channel(pool_vars, p_splitcomb, i, 0, &p_port); // 3? pjmedia_conf_add_port status = pjmedia_conf_add_port(conference_bridge, pool_vars, p_port, NULL, &p_slot); } And then, when i want to send an audio frame i do the following: pjmedia_port_put_frame(p_splitcomb, &frame); What is wrong with my code? Am i using splitcom correctly? Any help would be appreciated... Rafael Maia _________________________________________________________________ Mais do que emails! Confira tudo o que Windows Live? pode oferecer. http://www.microsoft.com/windows/windowslive/ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.pjsip.org/pipermail/pjsip_lists.pjsip.org/attachments/20090109/1c384553/attachment.html>