![]() |
Network Wizard for VHDL Test Benches
|
Functions | |
| t_slv_arr | f_rtp_create_pkt ( rtp_header: in t_rtp_header payload: in t_slv_arr get_length: in boolean false ) |
| t_slv_arr | f_rtp_create_pkt ( rtp_header: in t_rtp_header , payload: in t_slv_arr ) |
| Create RTP packet. | |
| natural | f_rtp_create_pkt_len ( rtp_header: in t_rtp_header , payload: in t_slv_arr ) |
| Return length of RTP packet. | |
| t_rtp_header | f_rtp_get_header ( rtp_pkt: in t_slv_arr ) |
| Get RTP header. | |
| t_slv_arr | f_rtp_get_payload ( rtp_pkt: in t_slv_arr , get_length: in boolean false ) |
| t_slv_arr | f_rtp_get_payload ( rtp_pkt: in t_slv_arr ) |
| Get RTP payload. | |
| natural | f_rtp_get_payload_len ( rtp_pkt: in t_slv_arr ) |
| Get RTP payload length. | |
|
Function |
Create RTP packet.
| rtp_header | RTP header |
| payload | RTP payload |
Create RTP packet. Payload must be 8bit data array.
Example use
|
Function |
Return length of RTP packet.
| rtp_header | RTP header |
| payload | RTP payload |
Return the length of the created RTP packet.
Example use
|
Function |
Get RTP header.
| rtp_pkt | RTP packet (8bit) |
Extract RTP header from RTP packet.
Example use
|
Function |
Get RTP payload.
| rtp_pkt | RTP packet (8bit) |
Extract RTP payload from RTP packet (including extension header and padding if present).
Example use
|
Function |
Get RTP payload length.
| rtp_pkt | RTP packet (8bit) |
Get RTP payload length from RTP packet (including extension header and padding if present).
Example use