Hi all,

I am working on a video conference project. Right now I have the video capture/encoding, audio capture/encoding, and network part. I would like to use Qt for the interface, and phonon for playing video and audio. I also modified the multimedia player sample code from Qt website.

I am wondering is there any way for phonon to play steaming video? For example, the program gets packets(including several frames of video or a chunk of audio) from the networks, and save the packets in memory(buffer or link list structure). How can I use phonon to play these several frames, like I may have two buffers(one for receiving data and the other for Qt playing), can Qt play these two buffers in order for a loop?

Thanks!