Home
last modified time | relevance | path

Searched refs:NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS (Results 1 – 2 of 2) sorted by relevance

/external/opencore/protocols/rtp/src/
Drtcp.cpp193 if (index < NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS) in get_report_block()
200 …rts = OSCL_ARRAY_NEW(RTCP_ReportBlock, max_report_blocks - NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS); in get_report_block()
204 return additional_reports + (index - NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS); in get_report_block()
217 if (index < NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS) in read_report_block()
227 return additional_reports + (index - NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS); in read_report_block()
242 if (new_max_report_blocks > NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS) in set_max_report_blocks()
246 …= OSCL_ARRAY_NEW(RTCP_ReportBlock, new_max_report_blocks - NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS); in set_max_report_blocks()
250 else if (new_max_report_blocks > NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS) in set_max_report_blocks()
253 …= OSCL_ARRAY_NEW(RTCP_ReportBlock, new_max_report_blocks - NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS); in set_max_report_blocks()
269 if (index < NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS) in set_report_block()
[all …]
Drtcp.h56 const uint NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS = 1; variable
202 RTCP_ReportBlock preallocated_reports[NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS];