Hello, everyoneI'm working on a project about WebRTC and need to transcode media streams between browsers (like Chrome, using VP8) and IMS terminals (like linphone, using H264).Without RTCP control, video streams are in low quality. So I want to use JRTPLIB to manage RTP and RTCP for I'm not able to write RTCP buffer.I use ffmpeg to transcode streams and try receiving and sending streams with JRTPLIB to deal with RTP and RTCP. I have checked the data received and they worked. But after transcoding and sending, the screen kept black.I guess this is because video frames' size are greater than Ethernet transport limit. So they need to be split into more than one packets. According to RFCs, some bits should change while dividing a frame. I use functions in ffmpeg's source code ( rtpenc.c, rtpenc_h264.c, rtpenc_vp8.c) to get payload and abandon RTP head. Then I send payload to JRTPLIB's API, hoping JRTPLIB to add RTP headers, but still black.So if I finish transcoding streams, how to send them in RTP and send RTCP, and receive rtcp? Can JRTPLIB do that ? Or there are other ways?Thans for your reading and appreciate for your help.