diff --git a/src/mod/endpoints/mod_opal/mod_opal.cpp b/src/mod/endpoints/mod_opal/mod_opal.cpp index 606e4d0e82..b461ad8dd6 100644 --- a/src/mod/endpoints/mod_opal/mod_opal.cpp +++ b/src/mod/endpoints/mod_opal/mod_opal.cpp @@ -1229,6 +1229,9 @@ switch_status_t FSMediaStream::write_frame(const switch_frame_t *frame, switch_i RTP_DataFrame rtp; rtp.SetPayloadType(mediaFormat.GetPayloadType()); rtp.SetPayloadSize(frame->datalen); + rtp.SetTimestamp(frame->timestamp); + rtp.SetSyncSource(frame->ssrc); + rtp.SetMarker(frame->m); memcpy(rtp.GetPayloadPtr(), frame->data, frame->datalen); if (GetPatch()->PushFrame(rtp)) return SWITCH_STATUS_SUCCESS;